{"paragraphs":[{"text":"%md\n## Single view demo\n\n#### Goal\n\nDemonstrate how [Apache Hive](http://hortonworks.com/hadoop/hive/) on [HDP Sandbox](http://hortonworks.com/sandbox) can help retailer get a single view of a product by combining data from different sources and run interative queries against the data. In this case, the data sources are:\n - ETL/CRM data from EDW/DB - ingested using [Apache Sqoop](http://hortonworks.com/hadoop/sqoop/)\n - Web traffic data - ingested using [HDF](http://hortonworks.com/hdf)\n - Social media data - ingested using [HDF](http://hortonworks.com/hdf)\n \n#### Steps\n\n0. Pre-reqs: Setup and import retail data set into DB/EDW (in this case: Postgres)\n1. Use Sqoop to import CRM/ERP data from DB/EDW into Hive\n2. Use HDF to import related tweets into Hive\n3. Use HDF to import simulated web traffic logs into Hive\n4. Use Hive to analyze tables to populate statistics\n5. Use Hive to correlate the data from multiple data sources\n\nNote: this is a simplified version of the demo. A more realistic self-lab of this content is available that:\n - runs the steps as either IT user (for setup) or marketing user (as business user running queries)\n - uses Ranger to setup authorization policies and audit\n\n\nMore details available at [https://github.com/abajwa-hw/single-view-demo](https://github.com/abajwa-hw/single-view-demo)\n","dateUpdated":"2016-01-25T03:51:10+0000","config":{"colWidth":12,"graph":{"mode":"table","height":300,"optionOpen":false,"keys":[],"values":[],"groups":[],"scatter":{}},"editorMode":"ace/mode/markdown","editorHide":true,"tableHide":false,"enabled":true},"settings":{"params":{},"forms":{}},"jobName":"paragraph_1452692863906_1418901413","id":"20160113-134743_1060998530","result":{"code":"SUCCESS","type":"HTML","msg":"

Single view demo

\n

Goal

\n

Demonstrate how Apache Hive on HDP Sandbox can help retailer get a single view of a product by combining data from different sources and run interative queries against the data. In this case, the data sources are:

\n\n

Steps

\n
    \n
  1. Pre-reqs: Setup and import retail data set into DB/EDW (in this case: Postgres)
  2. \n
  3. Use Sqoop to import CRM/ERP data from DB/EDW into Hive
  4. \n
  5. Use HDF to import related tweets into Hive
  6. \n
  7. Use HDF to import simulated web traffic logs into Hive
  8. \n
  9. Use Hive to analyze tables to populate statistics
  10. \n
  11. Use Hive to correlate the data from multiple data sources
  12. \n
\n

Note: this is a simplified version of the demo. A more realistic self-lab of this content is available that:

\n\n

More details available at https://github.com/abajwa-hw/single-view-demo

\n"},"dateCreated":"2016-01-13T01:47:43+0000","dateStarted":"2016-01-25T03:51:07+0000","dateFinished":"2016-01-25T03:51:12+0000","status":"FINISHED","progressUpdateIntervalMs":500,"$$hashKey":"object:1701"},{"text":"%md\n#### 1. Pre-requisites\nBefore running this notebook:\n1. *Not required on HDP Sandbox as it already has these set*\nEnable [Hive transactions](https://cwiki.apache.org/confluence/display/Hive/Hive+Transactions) by setting below via Ambari > Hive > Config:\n```\nhive.support.concurrency = true\nhive.enforce.bucketing = true \nhive.exec.dynamic.partition.mode = nonstrict\nhive.txn.manager = org.apache.hadoop.hive.ql.lockmgr.DbTxnManager\nhive.compactor.initiator.on = true\n```\n2. Run below as root to give zeppelin sudo priviledge\n```\necho \"zeppelin ALL=(ALL) NOPASSWD: ALL\" >> /etc/sudoers\n```\n3. Run below to enable zeppelin to log in to postgres\n```\necho \"host all all 127.0.0.1/32 md5\" >> /var/lib/pgsql/data/pg_hba.conf\n```","dateUpdated":"2016-01-25T04:41:25+0000","config":{"colWidth":12,"graph":{"mode":"table","height":300,"optionOpen":false,"keys":[],"values":[],"groups":[],"scatter":{}},"editorMode":"ace/mode/markdown","editorHide":true,"tableHide":false,"enabled":true},"settings":{"params":{},"forms":{}},"jobName":"paragraph_1452692927804_-169433992","id":"20160113-134847_777473592","result":{"code":"SUCCESS","type":"HTML","msg":"

1. Pre-requisites

\n

Before running this notebook:

\n
    \n
  1. Not required on HDP Sandbox as it already has these set\n
    Enable Hive transactions by setting below via Ambari > Hive > Config:
    hive.support.concurrency = true\nhive.enforce.bucketing = true \nhive.exec.dynamic.partition.mode = nonstrict\nhive.txn.manager = org.apache.hadoop.hive.ql.lockmgr.DbTxnManager\nhive.compactor.initiator.on = true\n
    \n
  2. \n
  3. Run below as root to give zeppelin sudo priviledge
    echo \"zeppelin  ALL=(ALL) NOPASSWD: ALL\" >> /etc/sudoers\n
    \n
  4. \n
  5. Run below to enable zeppelin to log in to postgres
    echo \"host all all 127.0.0.1/32 md5\" >> /var/lib/pgsql/data/pg_hba.conf\n
    \n
  6. \n
\n"},"dateCreated":"2016-01-13T01:48:47+0000","dateStarted":"2016-01-25T04:41:11+0000","dateFinished":"2016-01-25T04:41:13+0000","status":"FINISHED","progressUpdateIntervalMs":500,"$$hashKey":"object:1702"},{"title":"Restart postgres","text":"%sh\n# on sandbox, use 'service ambari stop/start'\n# on cluster, use 'service ambari-server stop/start'\ncount=$(chkconfig --list | grep ambari | wc -l)\nif [ $count -eq 3 ]\nthen\n ambari_svc=\"ambari\" \nelse\n ambari_svc=\"ambari-server\"\nfi\n\nsudo service $ambari_svc stop\nsudo service postgresql stop\nsudo service postgresql start\nsudo service $ambari_svc start","dateUpdated":"2016-01-25T04:45:59+0000","config":{"colWidth":12,"graph":{"mode":"table","height":300,"optionOpen":false,"keys":[],"values":[],"groups":[],"scatter":{}},"editorMode":"ace/mode/sh","title":true,"tableHide":true,"enabled":true},"settings":{"params":{},"forms":{}},"jobName":"paragraph_1452691976481_-1308856086","id":"20160113-133256_428223579","result":{"code":"SUCCESS","type":"TEXT","msg":"Using python /usr/bin/python2\nStopping ambari-server\nAmbari Server stopped\nStopping postgresql service: [ OK ]\r\nStarting postgresql service: [ OK ]\r\nUsing python /usr/bin/python2\nStarting ambari-server\nAmbari Server running with administrator privileges.\nOrganizing resource files at /var/lib/ambari-server/resources...\nServer PID at: /var/run/ambari-server/ambari-server.pid\nServer out at: /var/log/ambari-server/ambari-server.out\nServer log at: /var/log/ambari-server/ambari-server.log\nWaiting for server start....................\nAmbari Server 'start' completed successfully.\n"},"dateCreated":"2016-01-13T01:32:56+0000","dateStarted":"2016-01-25T04:45:08+0000","dateFinished":"2016-01-25T04:45:31+0000","status":"FINISHED","progressUpdateIntervalMs":500,"$$hashKey":"object:1703"},{"title":"Create zeppelin user in Postgres","text":"%sh\nsudo -u postgres psql -c \"create database contoso;\"\nsudo -u postgres psql -c \"CREATE USER zeppelin WITH PASSWORD 'zeppelin';\"\nsudo -u postgres psql -c \"GRANT ALL PRIVILEGES ON DATABASE contoso to zeppelin;\"\nsudo -u postgres psql -c \"\\du\"","dateUpdated":"2016-01-14T07:51:07+0000","config":{"colWidth":12,"graph":{"mode":"table","height":300,"optionOpen":false,"keys":[],"values":[],"groups":[],"scatter":{}},"editorMode":"ace/mode/sh","title":true,"tableHide":true,"enabled":true},"settings":{"params":{},"forms":{}},"jobName":"paragraph_1452691127380_1898051711","id":"20160113-131847_335828946","result":{"code":"SUCCESS","type":"TEXT","msg":"could not change directory to \"/home/zeppelin\"\nCREATE DATABASE\ncould not change directory to \"/home/zeppelin\"\nCREATE ROLE\ncould not change directory to \"/home/zeppelin\"\nGRANT\ncould not change directory to \"/home/zeppelin\"\n List of roles\n Role name | Attributes | Member of \n-----------+-------------+-----------\n ambari | | {}\n mapred | | {}\n postgres | Superuser | {}\n : Create role \n : Create DB \n zeppelin | | {}\n\n"},"dateCreated":"2016-01-13T01:18:47+0000","dateStarted":"2016-01-14T07:50:59+0000","dateFinished":"2016-01-14T07:51:00+0000","status":"FINISHED","progressUpdateIntervalMs":500,"$$hashKey":"object:1704"},{"title":"Setup Sqoop for Postgres","text":"%sh\nsudo wget https://jdbc.postgresql.org/download/postgresql-9.4.1207.jar -P /usr/hdp/current/sqoop-client/lib\nls -la /usr/hdp/current/sqoop-client/lib/postgres*","dateUpdated":"2016-01-14T07:51:09+0000","config":{"colWidth":12,"graph":{"mode":"table","height":300,"optionOpen":false,"keys":[],"values":[],"groups":[],"scatter":{}},"title":true,"enabled":true,"editorMode":"ace/mode/sh"},"settings":{"params":{},"forms":{}},"jobName":"paragraph_1452692156170_1961618479","id":"20160113-133556_476072266","result":{"code":"SUCCESS","type":"TEXT","msg":"--2016-01-14 19:51:09-- https://jdbc.postgresql.org/download/postgresql-9.4.1207.jar\nResolving jdbc.postgresql.org... 174.143.35.228\nConnecting to jdbc.postgresql.org|174.143.35.228|:443... connected.\nHTTP request sent, awaiting response... 200 OK\nLength: 607093 (593K) [application/java-archive]\nSaving to: “/usr/hdp/current/sqoop-client/lib/postgresql-9.4.1207.jar”\n\n 0K .......... .......... .......... .......... .......... 8% 581K 1s\n 50K .......... .......... .......... .......... .......... 16% 1.04M 1s\n 100K .......... .......... .......... .......... .......... 25% 1.17M 1s\n 150K .......... .......... .......... .......... .......... 33% 389K 1s\n 200K .......... .......... .......... .......... .......... 42% 129K 1s\n 250K .......... .......... .......... .......... .......... 50% 235M 1s\n 300K .......... .......... .......... .......... .......... 59% 1.25M 1s\n 350K .......... .......... .......... .......... .......... 67% 1.17M 0s\n 400K .......... .......... .......... .......... .......... 75% 529K 0s\n 450K .......... .......... .......... .......... .......... 84% 31.9M 0s\n 500K .......... .......... .......... .......... .......... 92% 1.19M 0s\n 550K .......... .......... .......... .......... .. 100% 809K=1.0s\n\n2016-01-14 19:51:10 (616 KB/s) - “/usr/hdp/current/sqoop-client/lib/postgresql-9.4.1207.jar” saved [607093/607093]\n\n-rw-r--r-- 1 root root 607093 2015-12-22 20:23 /usr/hdp/current/sqoop-client/lib/postgresql-9.4.1207.jar\n"},"dateCreated":"2016-01-13T01:35:56+0000","dateStarted":"2016-01-14T07:51:09+0000","dateFinished":"2016-01-14T07:51:10+0000","status":"FINISHED","progressUpdateIntervalMs":500,"$$hashKey":"object:1705"},{"title":"Pull latest code","text":"%sh\ngit clone https://github.com/abajwa-hw/single-view-demo.git \nls single-view-demo\n","dateUpdated":"2016-01-14T07:51:16+0000","config":{"colWidth":12,"graph":{"mode":"table","height":300,"optionOpen":false,"keys":[],"values":[],"groups":[],"scatter":{}},"editorMode":"ace/mode/sh","title":true,"enabled":true},"settings":{"params":{},"forms":{}},"jobName":"paragraph_1452692208681_1891270727","id":"20160113-133648_2117254326","result":{"code":"SUCCESS","type":"TEXT","msg":"Initialized empty Git repository in /home/zeppelin/single-view-demo/.git/\ncontoso-psql.sql\ncreatelog-mysql.sh\ncreatelog-psql.sh\ndata\nnotebook\npom-22.xml\npom.xml\nREADME.md\nruntopology.sh\nscreenshots\nSingle_view_demo.xml\nsingleview-mysql-advanced-23.md\nsingleview-mysql-basic-21.md\nsingleview-mysql-basic-22.md\nsingleview-mysql-basic-23.md\nsingleview-psql-advanced-23.md\nsrc\ntarget\n"},"dateCreated":"2016-01-13T01:36:48+0000","dateStarted":"2016-01-14T07:51:16+0000","dateFinished":"2016-01-14T07:52:55+0000","status":"FINISHED","progressUpdateIntervalMs":500,"$$hashKey":"object:1706"},{"title":"Download retail (contoso) dataset","text":"%sh\ncd /tmp\nwget https://www.dropbox.com/s/r70i8j1ujx4h7j8/data.zip\nunzip data.zip\nhead /tmp/data/FactSales.csv","dateUpdated":"2016-01-14T08:04:40+0000","config":{"colWidth":12,"graph":{"mode":"table","height":300,"optionOpen":false,"keys":[],"values":[],"groups":[],"scatter":{}},"editorMode":"ace/mode/sh","title":true,"tableHide":true,"enabled":true},"settings":{"params":{},"forms":{}},"jobName":"paragraph_1452692486574_1677885040","id":"20160113-134126_1230976042","result":{"code":"SUCCESS","type":"TEXT","msg":"--2016-01-14 19:53:06-- https://www.dropbox.com/s/r70i8j1ujx4h7j8/data.zip\nResolving www.dropbox.com... 108.160.172.238, 108.160.172.206\nConnecting to www.dropbox.com|108.160.172.238|:443... connected.\nHTTP request sent, awaiting response... 302 FOUND\nLocation: https://dl.dropboxusercontent.com/content_link/396pC2tYQeRhymfpv1gnbF2u9i47My1IxwF62tUIii3GdKnNh53JJsrKdeRZ0aOS/file [following]\n--2016-01-14 19:53:07-- https://dl.dropboxusercontent.com/content_link/396pC2tYQeRhymfpv1gnbF2u9i47My1IxwF62tUIii3GdKnNh53JJsrKdeRZ0aOS/file\nResolving dl.dropboxusercontent.com... 108.160.173.165\nConnecting to dl.dropboxusercontent.com|108.160.173.165|:443... connected.\nHTTP request sent, awaiting response... 200 OK\nLength: 544623675 (519M) [application/zip]\nSaving to: “data.zip”\n\n 0K .......... .......... .......... .......... .......... 0% 957K 9m16s\n 50K .......... .......... .......... .......... .......... 0% 1.18M 8m18s\n 100K .......... .......... .......... .......... .......... 0% 1.15M 8m3s\n 150K .......... .......... .......... .......... .......... 0% 1.24M 7m46s\n 200K .......... .......... .......... .......... .......... 0% 296K 12m13s\n 250K .......... .......... .......... .......... .......... 0% 75.1M 10m12s\n 300K .......... .......... .......... .......... .......... 0% 1.50M 9m34s\n 350K .......... .......... .......... .......... .......... 0% 899K 9m36s\n 400K .......... .......... .......... .......... .......... 0% 1.22M 9m19s\n 450K .......... .......... .......... .......... .......... 0% 1.20M 9m6s\n 500K .......... .......... .......... .......... .......... 0% 1.16M 8m57s\n 550K .......... .......... .......... .......... .......... 0% 1.18M 8m49s\n 600K .......... .......... .......... .......... .......... 0% 1.18M 8m42s\n 650K .......... .......... .......... .......... .......... 0% 1.19M 8m36s\n 700K .......... .......... .......... .......... .......... 0% 235K 10m32s\n 750K .......... .......... .......... .......... .......... 0% 292M 9m52s\n 800K .......... .......... .......... .......... .......... 0% 223M 9m18s\n 850K .......... .......... .......... .......... .......... 0% 1.39M 9m7s\n 900K .......... .......... .......... .......... .......... 0% 693K 9m19s\n 950K .......... .......... .......... .......... .......... 0% 1.18M 9m13s\n 1000K .......... .......... .......... .......... .......... 0% 1.20M 9m7s\n 1050K .......... .......... .......... .......... .......... 0% 1.17M 9m2s\n 1100K .......... .......... .......... .......... .......... 0% 1.20M 8m57s\n 1150K .......... .......... .......... .......... .......... 0% 898K 9m0s\n 1200K .......... .......... .......... .......... .......... 0% 1.21M 8m55s\n 1250K .......... .......... .......... .......... .......... 0% 1.18M 8m51s\n 1300K .......... .......... .......... .......... .......... 0% 1.21M 8m47s\n 1350K .......... .......... .......... .......... .......... 0% 1.19M 8m44s\n 1400K .......... .......... .......... .......... .......... 0% 224K 9m48s\n 1450K .......... .......... .......... .......... .......... 0% 6.71M 9m31s\n 1500K .......... .......... .......... .......... .......... 0% 370M 9m12s\n 1550K .......... .......... .......... .......... .......... 0% 667K 9m20s\n 1600K .......... .......... .......... .......... .......... 0% 294M 9m3s\n 1650K .......... .......... .......... .......... .......... 0% 698K 9m9s\n 1700K .......... .......... .......... .......... .......... 0% 1.18M 9m6s\n 1750K .......... .......... .......... .......... .......... 0% 1.20M 9m3s\n 1800K .......... .......... .......... .......... .......... 0% 1.16M 9m0s\n 1850K .......... .......... .......... .......... .......... 0% 1.12M 8m58s\n 1900K .......... .......... .......... .......... .......... 0% 1.31M 8m54s\n 1950K .......... .......... .......... .......... .......... 0% 900K 8m56s\n 2000K .......... .......... .......... .......... .......... 0% 1.16M 8m53s\n 2050K .......... .......... .......... .......... .......... 0% 1005K 8m53s\n 2100K .......... .......... .......... .......... .......... 0% 229K 9m34s\n 2150K .......... .......... .......... .......... .......... 0% 9.22M 9m22s\n 2200K .......... .......... .......... .......... .......... 0% 75.1M 9m10s\n 2250K .......... .......... .......... .......... .......... 0% 44.6M 8m58s\n 2300K .......... .......... .......... .......... .......... 0% 13.4M 8m48s\n 2350K .......... .......... .......... .......... .......... 0% 805K 8m50s\n 2400K .......... .......... .......... .......... .......... 0% 1.13M 8m49s\n 2450K .......... .......... .......... .......... .......... 0% 1.25M 8m46s\n 2500K .......... .......... .......... .......... .......... 0% 1.17M 8m45s\n 2550K .......... .......... .......... .......... .......... 0% 1.22M 8m43s\n 2600K .......... .......... .......... .......... .......... 0% 1.17M 8m41s\n 2650K .......... .......... .......... .......... .......... 0% 1.14M 8m40s\n 2700K .......... .......... .......... .......... .......... 0% 1.20M 8m38s\n 2750K .......... .......... .......... .......... .......... 0% 957K 8m39s\n 2800K .......... .......... .......... .......... .......... 0% 1.14M 8m38s\n 2850K .......... .......... .......... .......... .......... 0% 1.21M 8m36s\n 2900K .......... .......... .......... .......... .......... 0% 1.19M 8m34s\n 2950K .......... .......... .......... .......... .......... 0% 1.19M 8m33s\n 3000K .......... .......... .......... .......... .......... 0% 1.19M 8m32s\n 3050K .......... .......... .......... .......... .......... 0% 1.19M 8m30s\n 3100K .......... .......... .......... .......... .......... 0% 1.19M 8m29s\n 3150K .......... .......... .......... .......... .......... 0% 902K 8m30s\n 3200K .......... .......... .......... .......... .......... 0% 1.20M 8m29s\n 3250K .......... .......... .......... .......... .......... 0% 1.20M 8m28s\n 3300K .......... .......... .......... .......... .......... 0% 444K 8m38s\n 3350K .......... .......... .......... .......... .......... 0% 454M 8m30s\n 3400K .......... .......... .......... .......... .......... 0% 3.33M 8m25s\n 3450K .......... .......... .......... .......... .......... 0% 229K 8m51s\n 3500K .......... .......... .......... .......... .......... 0% 30.0M 8m44s\n 3550K .......... .......... .......... .......... .......... 0% 20.6M 8m37s\n 3600K .......... .......... .......... .......... .......... 0% 880K 8m38s\n 3650K .......... .......... .......... .......... .......... 0% 222M 8m31s\n 3700K .......... .......... .......... .......... .......... 0% 1.03M 8m30s\n 3750K .......... .......... .......... .......... .......... 0% 1.13M 8m30s\n 3800K .......... .......... .......... .......... .......... 0% 1.22M 8m29s\n 3850K .......... .......... .......... .......... .......... 0% 1.19M 8m28s\n 3900K .......... .......... .......... .......... .......... 0% 1.17M 8m27s\n 3950K .......... .......... .......... .......... .......... 0% 892K 8m28s\n 4000K .......... .......... .......... .......... .......... 0% 1.16M 8m27s\n 4050K .......... .......... .......... .......... .......... 0% 1.25M 8m26s\n 4100K .......... .......... .......... .......... .......... 0% 225K 8m48s\n 4150K .......... .......... .......... .......... .......... 0% 36.1M 8m42s\n 4200K .......... .......... .......... .......... .......... 0% 17.4M 8m36s\n 4250K .......... .......... .......... .......... .......... 0% 47.9M 8m30s\n 4300K .......... .......... .......... .......... .......... 0% 896K 8m31s\n 4350K .......... .......... .......... .......... .......... 0% 1.01M 8m31s\n 4400K .......... .......... .......... .......... .......... 0% 1.21M 8m30s\n 4450K .......... .......... .......... .......... .......... 0% 1.21M 8m29s\n 4500K .......... .......... .......... .......... .......... 0% 1.18M 8m28s\n 4550K .......... .......... .......... .......... .......... 0% 1.20M 8m27s\n 4600K .......... .......... .......... .......... .......... 0% 1.14M 8m26s\n 4650K .......... .......... .......... .......... .......... 0% 1.21M 8m25s\n 4700K .......... .......... .......... .......... .......... 0% 1.23M 8m24s\n 4750K .......... .......... .......... .......... .......... 0% 914K 8m25s\n 4800K .......... .......... .......... .......... .......... 0% 194K 8m48s\n 4850K .......... .......... .......... .......... .......... 0% 55.3M 8m42s\n 4900K .......... .......... .......... .......... .......... 0% 116M 8m37s\n 4950K .......... .......... .......... .......... .......... 0% 124M 8m32s\n 5000K .......... .......... .......... .......... .......... 0% 1.51M 8m30s\n 5050K .......... .......... .......... .......... .......... 0% 951K 8m31s\n 5100K .......... .......... .......... .......... .......... 0% 217K 8m49s\n 5150K .......... .......... .......... .......... .......... 0% 13.1M 8m44s\n 5200K .......... .......... .......... .......... .......... 0% 469M 8m39s\n 5250K .......... .......... .......... .......... .......... 0% 43.7M 8m35s\n 5300K .......... .......... .......... .......... .......... 1% 482M 8m30s\n 5350K .......... .......... .......... .......... .......... 1% 786K 8m31s\n 5400K .......... .......... .......... .......... .......... 1% 1.18M 8m30s\n 5450K .......... .......... .......... .......... .......... 1% 1.20M 8m30s\n 5500K .......... .......... .......... .......... .......... 1% 1.18M 8m29s\n 5550K .......... .......... .......... .......... .......... 1% 942K 8m29s\n 5600K .......... .......... .......... .......... .......... 1% 1.18M 8m29s\n 5650K .......... .......... .......... .......... .......... 1% 1.19M 8m28s\n 5700K .......... .......... .......... .......... .......... 1% 1.16M 8m27s\n 5750K .......... .......... .......... .......... .......... 1% 1.19M 8m27s\n 5800K .......... .......... .......... .......... .......... 1% 1.20M 8m26s\n 5850K .......... .......... .......... .......... .......... 1% 1.16M 8m25s\n 5900K .......... .......... .......... .......... .......... 1% 1.21M 8m25s\n 5950K .......... .......... .......... .......... .......... 1% 911K 8m25s\n 6000K .......... .......... .......... .......... .......... 1% 1.21M 8m24s\n 6050K .......... .......... .......... .......... .......... 1% 1.15M 8m24s\n 6100K .......... .......... .......... .......... .......... 1% 1.19M 8m23s\n 6150K .......... .......... .......... .......... .......... 1% 1.20M 8m23s\n 6200K .......... .......... .......... .......... .......... 1% 1.01M 8m23s\n 6250K .......... .......... .......... .......... .......... 1% 1.43M 8m21s\n 6300K .......... .......... .......... .......... .......... 1% 1.22M 8m21s\n 6350K .......... .......... .......... .......... .......... 1% 880K 8m21s\n 6400K .......... .......... .......... .......... .......... 1% 1.17M 8m21s\n 6450K .......... .......... .......... .......... .......... 1% 1.20M 8m20s\n 6500K .......... .......... .......... .......... .......... 1% 1.21M 8m20s\n 6550K .......... .......... .......... .......... .......... 1% 1.04M 8m20s\n 6600K .......... .......... .......... .......... .......... 1% 1.40M 8m18s\n 6650K .......... .......... .......... .......... .......... 1% 1.17M 8m18s\n 6700K .......... .......... .......... .......... .......... 1% 1.19M 8m17s\n 6750K .......... .......... .......... .......... .......... 1% 913K 8m18s\n 6800K .......... .......... .......... .......... .......... 1% 1.19M 8m17s\n 6850K .......... .......... .......... .......... .......... 1% 1.18M 8m17s\n 6900K .......... .......... .......... .......... .......... 1% 1.20M 8m16s\n 6950K .......... .......... .......... .......... .......... 1% 1.20M 8m16s\n 7000K .......... .......... .......... .......... .......... 1% 1.21M 8m15s\n 7050K .......... .......... .......... .......... .......... 1% 1.18M 8m15s\n 7100K .......... .......... .......... .......... .......... 1% 1.20M 8m14s\n 7150K .......... .......... .......... .......... .......... 1% 882K 8m15s\n 7200K .......... .......... .......... .......... .......... 1% 1.18M 8m15s\n 7250K .......... .......... .......... .......... .......... 1% 1.22M 8m14s\n 7300K .......... .......... .......... .......... .......... 1% 1.17M 8m14s\n 7350K .......... .......... .......... .......... .......... 1% 1.18M 8m13s\n 7400K .......... .......... .......... .......... .......... 1% 1.22M 8m13s\n 7450K .......... .......... .......... .......... .......... 1% 1.18M 8m12s\n 7500K .......... .......... .......... .......... .......... 1% 1.18M 8m12s\n 7550K .......... .......... .......... .......... .......... 1% 939K 8m12s\n 7600K .......... .......... .......... .......... .......... 1% 1.18M 8m12s\n 7650K .......... .......... .......... .......... .......... 1% 1.18M 8m11s\n 7700K .......... .......... .......... .......... .......... 1% 192K 8m26s\n 7750K .......... .......... .......... .......... .......... 1% 48.3M 8m22s\n 7800K .......... .......... .......... .......... .......... 1% 106M 8m19s\n 7850K .......... .......... .......... .......... .......... 1% 1.70M 8m18s\n 7900K .......... .......... .......... .......... .......... 1% 101M 8m15s\n 7950K .......... .......... .......... .......... .......... 1% 735K 8m16s\n 8000K .......... .......... .......... .......... .......... 1% 1.17M 8m16s\n 8050K .......... .......... .......... .......... .......... 1% 1.19M 8m15s\n 8100K .......... .......... .......... .......... .......... 1% 1.18M 8m15s\n 8150K .......... .......... .......... .......... .......... 1% 1.19M 8m14s\n 8200K .......... .......... .......... .......... .......... 1% 1.20M 8m14s\n 8250K .......... .......... .......... .......... .......... 1% 1.18M 8m13s\n 8300K .......... .......... .......... .......... .......... 1% 1.21M 8m13s\n 8350K .......... .......... .......... .......... .......... 1% 887K 8m14s\n 8400K .......... .......... .......... .......... .......... 1% 1.22M 8m13s\n 8450K .......... .......... .......... .......... .......... 1% 1.16M 8m13s\n 8500K .......... .......... .......... .......... .......... 1% 1.22M 8m12s\n 8550K .......... .......... .......... .......... .......... 1% 1.17M 8m12s\n 8600K .......... .......... .......... .......... .......... 1% 201K 8m24s\n 8650K .......... .......... .......... .......... .......... 1% 132M 8m21s\n 8700K .......... .......... .......... .......... .......... 1% 455M 8m18s\n 8750K .......... .......... .......... .......... .......... 1% 1.44M 8m17s\n 8800K .......... .......... .......... .......... .......... 1% 1.68M 8m16s\n 8850K .......... .......... .......... .......... .......... 1% 1.19M 8m16s\n 8900K .......... .......... .......... .......... .......... 1% 234K 8m25s\n 8950K .......... .......... .......... .......... .......... 1% 66.3M 8m23s\n 9000K .......... .......... .......... .......... .......... 1% 119M 8m20s\n 9050K .......... .......... .......... .......... .......... 1% 1.52M 8m19s\n 9100K .......... .......... .......... .......... .......... 1% 80.1M 8m16s\n 9150K .......... .......... .......... .......... .......... 1% 622K 8m18s\n 9200K .......... .......... .......... .......... .......... 1% 1.20M 8m17s\n 9250K .......... .......... .......... .......... .......... 1% 1.19M 8m17s\n 9300K .......... .......... .......... .......... .......... 1% 1.19M 8m17s\n 9350K .......... .......... .......... .......... .......... 1% 1.20M 8m16s\n 9400K .......... .......... .......... .......... .......... 1% 1.15M 8m16s\n 9450K .......... .......... .......... .......... .......... 1% 1.19M 8m15s\n 9500K .......... .......... .......... .......... .......... 1% 1.09M 8m15s\n 9550K .......... .......... .......... .......... .......... 1% 772K 8m16s\n 9600K .......... .......... .......... .......... .......... 1% 1.73M 8m15s\n 9650K .......... .......... .......... .......... .......... 1% 1.21M 8m15s\n 9700K .......... .......... .......... .......... .......... 1% 1.19M 8m14s\n 9750K .......... .......... .......... .......... .......... 1% 1.18M 8m14s\n 9800K .......... .......... .......... .......... .......... 1% 254K 8m22s\n 9850K .......... .......... .......... .......... .......... 1% 24.5M 8m19s\n 9900K .......... .......... .......... .......... .......... 1% 14.8M 8m17s\n 9950K .......... .......... .......... .......... .......... 1% 15.3M 8m15s\n 10000K .......... .......... .......... .......... .......... 1% 1.01M 8m15s\n 10050K .......... .......... .......... .......... .......... 1% 1.19M 8m14s\n 10100K .......... .......... .......... .......... .......... 1% 1.17M 8m14s\n 10150K .......... .......... .......... .......... .......... 1% 1.16M 8m14s\n 10200K .......... .......... .......... .......... .......... 1% 1.25M 8m13s\n 10250K .......... .......... .......... .......... .......... 1% 1.14M 8m13s\n 10300K .......... .......... .......... .......... .......... 1% 1.22M 8m12s\n 10350K .......... .......... .......... .......... .......... 1% 93.2K 8m37s\n 10400K .......... .......... .......... .......... .......... 1% 1.19M 8m36s\n 10450K .......... .......... .......... .......... .......... 1% 1.19M 8m36s\n 10500K .......... .......... .......... .......... .......... 1% 1.18M 8m35s\n 10550K .......... .......... .......... .......... .......... 1% 1.15M 8m35s\n 10600K .......... .......... .......... .......... .......... 2% 1.20M 8m35s\n 10650K .......... .......... .......... .......... .......... 2% 205K 8m44s\n 10700K .......... .......... .......... .......... .......... 2% 97.3M 8m42s\n 10750K .......... .......... .......... .......... .......... 2% 71.1M 8m39s\n 10800K .......... .......... .......... .......... .......... 2% 1.48M 8m38s\n 10850K .......... .......... .......... .......... .......... 2% 1.13M 8m38s\n 10900K .......... .......... .......... .......... .......... 2% 964K 8m38s\n 10950K .......... .......... .......... .......... .......... 2% 1.54M 8m37s\n 11000K .......... .......... .......... .......... .......... 2% 1.22M 8m37s\n 11050K .......... .......... .......... .......... .......... 2% 1.20M 8m36s\n 11100K .......... .......... .......... .......... .......... 2% 1.17M 8m36s\n 11150K .......... .......... .......... .......... .......... 2% 913K 8m36s\n 11200K .......... .......... .......... .......... .......... 2% 1.14M 8m36s\n 11250K .......... .......... .......... .......... .......... 2% 1.24M 8m35s\n 11300K .......... .......... .......... .......... .......... 2% 1.19M 8m35s\n 11350K .......... .......... .......... .......... .......... 2% 1.18M 8m34s\n 11400K .......... .......... .......... .......... .......... 2% 222K 8m42s\n 11450K .......... .......... .......... .......... .......... 2% 52.1M 8m40s\n 11500K .......... .......... .......... .......... .......... 2% 45.9M 8m38s\n 11550K .......... .......... .......... .......... .......... 2% 5.70M 8m36s\n 11600K .......... .......... .......... .......... .......... 2% 23.5M 8m33s\n 11650K .......... .......... .......... .......... .......... 2% 888K 8m34s\n 11700K .......... .......... .......... .......... .......... 2% 1.16M 8m33s\n 11750K .......... .......... .......... .......... .......... 2% 1.21M 8m33s\n 11800K .......... .......... .......... .......... .......... 2% 1.16M 8m33s\n 11850K .......... .......... .......... .......... .......... 2% 1.23M 8m32s\n 11900K .......... .......... .......... .......... .......... 2% 1.18M 8m32s\n 11950K .......... .......... .......... .......... .......... 2% 915K 8m32s\n 12000K .......... .......... .......... .......... .......... 2% 1.20M 8m31s\n 12050K .......... .......... .......... .......... .......... 2% 1.16M 8m31s\n 12100K .......... .......... .......... .......... .......... 2% 1.22M 8m31s\n 12150K .......... .......... .......... .......... .......... 2% 1.18M 8m30s\n 12200K .......... .......... .......... .......... .......... 2% 1.21M 8m30s\n 12250K .......... .......... .......... .......... .......... 2% 1.18M 8m30s\n 12300K .......... .......... .......... .......... .......... 2% 1.18M 8m29s\n 12350K .......... .......... .......... .......... .......... 2% 905K 8m29s\n 12400K .......... .......... .......... .......... .......... 2% 1.13M 8m29s\n 12450K .......... .......... .......... .......... .......... 2% 1.26M 8m29s\n 12500K .......... .......... .......... .......... .......... 2% 1.17M 8m28s\n 12550K .......... .......... .......... .......... .......... 2% 1.18M 8m28s\n 12600K .......... .......... .......... .......... .......... 2% 1.19M 8m28s\n 12650K .......... .......... .......... .......... .......... 2% 1.20M 8m27s\n 12700K .......... .......... .......... .......... .......... 2% 1.19M 8m27s\n 12750K .......... .......... .......... .......... .......... 2% 915K 8m27s\n 12800K .......... .......... .......... .......... .......... 2% 1.09M 8m27s\n 12850K .......... .......... .......... .......... .......... 2% 1.27M 8m26s\n 12900K .......... .......... .......... .......... .......... 2% 1.19M 8m26s\n 12950K .......... .......... .......... .......... .......... 2% 1.22M 8m26s\n 13000K .......... .......... .......... .......... .......... 2% 1.18M 8m25s\n 13050K .......... .......... .......... .......... .......... 2% 1.19M 8m25s\n 13100K .......... .......... .......... .......... .......... 2% 1.12M 8m25s\n 13150K .......... .......... .......... .......... .......... 2% 965K 8m25s\n 13200K .......... .......... .......... .......... .......... 2% 1.18M 8m24s\n 13250K .......... .......... .......... .......... .......... 2% 1.17M 8m24s\n 13300K .......... .......... .......... .......... .......... 2% 1.22M 8m24s\n 13350K .......... .......... .......... .......... .......... 2% 1.19M 8m23s\n 13400K .......... .......... .......... .......... .......... 2% 1.18M 8m23s\n 13450K .......... .......... .......... .......... .......... 2% 1.20M 8m23s\n 13500K .......... .......... .......... .......... .......... 2% 1.17M 8m22s\n 13550K .......... .......... .......... .......... .......... 2% 906K 8m23s\n 13600K .......... .......... .......... .......... .......... 2% 1.19M 8m22s\n 13650K .......... .......... .......... .......... .......... 2% 1.19M 8m22s\n 13700K .......... .......... .......... .......... .......... 2% 1.19M 8m22s\n 13750K .......... .......... .......... .......... .......... 2% 1.16M 8m21s\n 13800K .......... .......... .......... .......... .......... 2% 1.19M 8m21s\n 13850K .......... .......... .......... .......... .......... 2% 1.17M 8m21s\n 13900K .......... .......... .......... .......... .......... 2% 1.22M 8m20s\n 13950K .......... .......... .......... .......... .......... 2% 197K 8m28s\n 14000K .......... .......... .......... .......... .......... 2% 169M 8m26s\n 14050K .......... .......... .......... .......... .......... 2% 336M 8m24s\n 14100K .......... .......... .......... .......... .......... 2% 507K 8m26s\n 14150K .......... .......... .......... .......... .......... 2% 158M 8m24s\n 14200K .......... .......... .......... .......... .......... 2% 699K 8m25s\n 14250K .......... .......... .......... .......... .......... 2% 1.20M 8m25s\n 14300K .......... .......... .......... .......... .......... 2% 1.18M 8m24s\n 14350K .......... .......... .......... .......... .......... 2% 904K 8m24s\n 14400K .......... .......... .......... .......... .......... 2% 1.19M 8m24s\n 14450K .......... .......... .......... .......... .......... 2% 1.18M 8m24s\n 14500K .......... .......... .......... .......... .......... 2% 1.20M 8m23s\n 14550K .......... .......... .......... .......... .......... 2% 1.18M 8m23s\n 14600K .......... .......... .......... .......... .......... 2% 1.19M 8m23s\n 14650K .......... .......... .......... .......... .......... 2% 1.17M 8m23s\n 14700K .......... .......... .......... .......... .......... 2% 1.18M 8m22s\n 14750K .......... .......... .......... .......... .......... 2% 934K 8m22s\n 14800K .......... .......... .......... .......... .......... 2% 1.20M 8m22s\n 14850K .......... .......... .......... .......... .......... 2% 1.13M 8m22s\n 14900K .......... .......... .......... .......... .......... 2% 1.25M 8m21s\n 14950K .......... .......... .......... .......... .......... 2% 1.17M 8m21s\n 15000K .......... .......... .......... .......... .......... 2% 1.20M 8m21s\n 15050K .......... .......... .......... .......... .......... 2% 1.19M 8m21s\n 15100K .......... .......... .......... .......... .......... 2% 1.16M 8m20s\n 15150K .......... .......... .......... .......... .......... 2% 933K 8m20s\n 15200K .......... .......... .......... .......... .......... 2% 1.19M 8m20s\n 15250K .......... .......... .......... .......... .......... 2% 1.20M 8m20s\n 15300K .......... .......... .......... .......... .......... 2% 195K 8m27s\n 15350K .......... .......... .......... .......... .......... 2% 77.5M 8m25s\n 15400K .......... .......... .......... .......... .......... 2% 158M 8m23s\n 15450K .......... .......... .......... .......... .......... 2% 92.4M 8m22s\n 15500K .......... .......... .......... .......... .......... 2% 857K 8m22s\n 15550K .......... .......... .......... .......... .......... 2% 980K 8m22s\n 15600K .......... .......... .......... .......... .......... 2% 245K 8m27s\n 15650K .......... .......... .......... .......... .......... 2% 18.4M 8m26s\n 15700K .......... .......... .......... .......... .......... 2% 32.0M 8m24s\n 15750K .......... .......... .......... .......... .......... 2% 130M 8m22s\n 15800K .......... .......... .......... .......... .......... 2% 1.48M 8m22s\n 15850K .......... .......... .......... .......... .......... 2% 1.18M 8m21s\n 15900K .......... .......... .......... .......... .......... 2% 1.11M 8m21s\n 15950K .......... .......... .......... .......... .......... 3% 953K 8m21s\n 16000K .......... .......... .......... .......... .......... 3% 1.12M 8m21s\n 16050K .......... .......... .......... .......... .......... 3% 1.20M 8m21s\n 16100K .......... .......... .......... .......... .......... 3% 1.26M 8m20s\n 16150K .......... .......... .......... .......... .......... 3% 1.22M 8m20s\n 16200K .......... .......... .......... .......... .......... 3% 1.18M 8m20s\n 16250K .......... .......... .......... .......... .......... 3% 1.16M 8m20s\n 16300K .......... .......... .......... .......... .......... 3% 1.21M 8m19s\n 16350K .......... .......... .......... .......... .......... 3% 920K 8m19s\n 16400K .......... .......... .......... .......... .......... 3% 1.18M 8m19s\n 16450K .......... .......... .......... .......... .......... 3% 1.21M 8m19s\n 16500K .......... .......... .......... .......... .......... 3% 1.18M 8m19s\n 16550K .......... .......... .......... .......... .......... 3% 1.20M 8m18s\n 16600K .......... .......... .......... .......... .......... 3% 1.17M 8m18s\n 16650K .......... .......... .......... .......... .......... 3% 1.21M 8m18s\n 16700K .......... .......... .......... .......... .......... 3% 1.16M 8m18s\n 16750K .......... .......... .......... .......... .......... 3% 909K 8m18s\n 16800K .......... .......... .......... .......... .......... 3% 1.19M 8m17s\n 16850K .......... .......... .......... .......... .......... 3% 1.19M 8m17s\n 16900K .......... .......... .......... .......... .......... 3% 1.17M 8m17s\n 16950K .......... .......... .......... .......... .......... 3% 1.07M 8m17s\n 17000K .......... .......... .......... .......... .......... 3% 1.31M 8m16s\n 17050K .......... .......... .......... .......... .......... 3% 1.20M 8m16s\n 17100K .......... .......... .......... .......... .......... 3% 224K 8m21s\n 17150K .......... .......... .......... .......... .......... 3% 126M 8m20s\n 17200K .......... .......... .......... .......... .......... 3% 1.52M 8m19s\n 17250K .......... .......... .......... .......... .......... 3% 115M 8m18s\n 17300K .......... .......... .......... .......... .......... 3% 801K 8m18s\n 17350K .......... .......... .......... .......... .......... 3% 1.16M 8m18s\n 17400K .......... .......... .......... .......... .......... 3% 1.20M 8m18s\n 17450K .......... .......... .......... .......... .......... 3% 1.21M 8m17s\n 17500K .......... .......... .......... .......... .......... 3% 1.18M 8m17s\n 17550K .......... .......... .......... .......... .......... 3% 888K 8m17s\n 17600K .......... .......... .......... .......... .......... 3% 1.21M 8m17s\n 17650K .......... .......... .......... .......... .......... 3% 1.04M 8m17s\n 17700K .......... .......... .......... .......... .......... 3% 1.40M 8m17s\n 17750K .......... .......... .......... .......... .......... 3% 1.19M 8m16s\n 17800K .......... .......... .......... .......... .......... 3% 1.15M 8m16s\n 17850K .......... .......... .......... .......... .......... 3% 1.21M 8m16s\n 17900K .......... .......... .......... .......... .......... 3% 238K 8m20s\n 17950K .......... .......... .......... .......... .......... 3% 15.6M 8m19s\n 18000K .......... .......... .......... .......... .......... 3% 28.2M 8m18s\n 18050K .......... .......... .......... .......... .......... 3% 163M 8m16s\n 18100K .......... .......... .......... .......... .......... 3% 1.29M 8m16s\n 18150K .......... .......... .......... .......... .......... 3% 1.17M 8m16s\n 18200K .......... .......... .......... .......... .......... 3% 1.17M 8m15s\n 18250K .......... .......... .......... .......... .......... 3% 1.22M 8m15s\n 18300K .......... .......... .......... .......... .......... 3% 1.21M 8m15s\n 18350K .......... .......... .......... .......... .......... 3% 900K 8m15s\n 18400K .......... .......... .......... .......... .......... 3% 1.20M 8m15s\n 18450K .......... .......... .......... .......... .......... 3% 1.15M 8m15s\n 18500K .......... .......... .......... .......... .......... 3% 211K 8m20s\n 18550K .......... .......... .......... .......... .......... 3% 282M 8m18s\n 18600K .......... .......... .......... .......... .......... 3% 25.3M 8m17s\n 18650K .......... .......... .......... .......... .......... 3% 26.2M 8m16s\n 18700K .......... .......... .......... .......... .......... 3% 33.9M 8m14s\n 18750K .......... .......... .......... .......... .......... 3% 1.09M 8m14s\n 18800K .......... .......... .......... .......... .......... 3% 1.57M 8m14s\n 18850K .......... .......... .......... .......... .......... 3% 1.02M 8m14s\n 18900K .......... .......... .......... .......... .......... 3% 1.41M 8m13s\n 18950K .......... .......... .......... .......... .......... 3% 1.19M 8m13s\n 19000K .......... .......... .......... .......... .......... 3% 1.19M 8m13s\n 19050K .......... .......... .......... .......... .......... 3% 1.17M 8m13s\n 19100K .......... .......... .......... .......... .......... 3% 212K 8m18s\n 19150K .......... .......... .......... .......... .......... 3% 126M 8m16s\n 19200K .......... .......... .......... .......... .......... 3% 102M 8m15s\n 19250K .......... .......... .......... .......... .......... 3% 1.51M 8m14s\n 19300K .......... .......... .......... .......... .......... 3% 1020K 8m14s\n 19350K .......... .......... .......... .......... .......... 3% 1.20M 8m14s\n 19400K .......... .......... .......... .......... .......... 3% 1.18M 8m14s\n 19450K .......... .......... .......... .......... .......... 3% 1.17M 8m14s\n 19500K .......... .......... .......... .......... .......... 3% 1.22M 8m13s\n 19550K .......... .......... .......... .......... .......... 3% 916K 8m14s\n 19600K .......... .......... .......... .......... .......... 3% 1.20M 8m13s\n 19650K .......... .......... .......... .......... .......... 3% 1.16M 8m13s\n 19700K .......... .......... .......... .......... .......... 3% 1.17M 8m13s\n 19750K .......... .......... .......... .......... .......... 3% 1.23M 8m13s\n 19800K .......... .......... .......... .......... .......... 3% 1.15M 8m12s\n 19850K .......... .......... .......... .......... .......... 3% 223K 8m17s\n 19900K .......... .......... .......... .......... .......... 3% 133M 8m16s\n 19950K .......... .......... .......... .......... .......... 3% 13.5M 8m14s\n 20000K .......... .......... .......... .......... .......... 3% 17.3M 8m13s\n 20050K .......... .......... .......... .......... .......... 3% 20.8M 8m12s\n 20100K .......... .......... .......... .......... .......... 3% 788K 8m12s\n 20150K .......... .......... .......... .......... .......... 3% 1.27M 8m12s\n 20200K .......... .......... .......... .......... .......... 3% 1.20M 8m12s\n 20250K .......... .......... .......... .......... .......... 3% 1.15M 8m12s\n 20300K .......... .......... .......... .......... .......... 3% 1.17M 8m11s\n 20350K .......... .......... .......... .......... .......... 3% 940K 8m11s\n 20400K .......... .......... .......... .......... .......... 3% 1.17M 8m11s\n 20450K .......... .......... .......... .......... .......... 3% 1.11M 8m11s\n 20500K .......... .......... .......... .......... .......... 3% 1.30M 8m11s\n 20550K .......... .......... .......... .......... .......... 3% 1.17M 8m11s\n 20600K .......... .......... .......... .......... .......... 3% 1.19M 8m10s\n 20650K .......... .......... .......... .......... .......... 3% 1.20M 8m10s\n 20700K .......... .......... .......... .......... .......... 3% 1.18M 8m10s\n 20750K .......... .......... .......... .......... .......... 3% 911K 8m10s\n 20800K .......... .......... .......... .......... .......... 3% 1.18M 8m10s\n 20850K .......... .......... .......... .......... .......... 3% 1.16M 8m10s\n 20900K .......... .......... .......... .......... .......... 3% 1.19M 8m9s\n 20950K .......... .......... .......... .......... .......... 3% 444K 8m11s\n 21000K .......... .......... .......... .......... .......... 3% 93.5M 8m10s\n 21050K .......... .......... .......... .......... .......... 3% 4.62M 8m9s\n 21100K .......... .......... .......... .......... .......... 3% 1.16M 8m9s\n 21150K .......... .......... .......... .......... .......... 3% 942K 8m9s\n 21200K .......... .......... .......... .......... .......... 3% 1.19M 8m9s\n 21250K .......... .......... .......... .......... .......... 4% 1.20M 8m8s\n 21300K .......... .......... .......... .......... .......... 4% 1.17M 8m8s\n 21350K .......... .......... .......... .......... .......... 4% 1.19M 8m8s\n 21400K .......... .......... .......... .......... .......... 4% 1.20M 8m8s\n 21450K .......... .......... .......... .......... .......... 4% 1.15M 8m7s\n 21500K .......... .......... .......... .......... .......... 4% 1.24M 8m7s\n 21550K .......... .......... .......... .......... .......... 4% 909K 8m7s\n 21600K .......... .......... .......... .......... .......... 4% 1.20M 8m7s\n 21650K .......... .......... .......... .......... .......... 4% 1.18M 8m7s\n 21700K .......... .......... .......... .......... .......... 4% 1.18M 8m7s\n 21750K .......... .......... .......... .......... .......... 4% 1.20M 8m7s\n 21800K .......... .......... .......... .......... .......... 4% 1.17M 8m6s\n 21850K .......... .......... .......... .......... .......... 4% 1.20M 8m6s\n 21900K .......... .......... .......... .......... .......... 4% 1.19M 8m6s\n 21950K .......... .......... .......... .......... .......... 4% 881K 8m6s\n 22000K .......... .......... .......... .......... .......... 4% 1.14M 8m6s\n 22050K .......... .......... .......... .......... .......... 4% 1.27M 8m6s\n 22100K .......... .......... .......... .......... .......... 4% 1.19M 8m5s\n 22150K .......... .......... .......... .......... .......... 4% 1.20M 8m5s\n 22200K .......... .......... .......... .......... .......... 4% 1.17M 8m5s\n 22250K .......... .......... .......... .......... .......... 4% 1.17M 8m5s\n 22300K .......... .......... .......... .......... .......... 4% 1.14M 8m5s\n 22350K .......... .......... .......... .......... .......... 4% 360K 8m7s\n 22400K .......... .......... .......... .......... .......... 4% 117M 8m6s\n 22450K .......... .......... .......... .......... .......... 4% 272K 8m9s\n 22500K .......... .......... .......... .......... .......... 4% 29.7M 8m8s\n 22550K .......... .......... .......... .......... .......... 4% 48.5M 8m7s\n 22600K .......... .......... .......... .......... .......... 4% 12.4M 8m5s\n 22650K .......... .......... .......... .......... .......... 4% 900K 8m6s\n 22700K .......... .......... .......... .......... .......... 4% 440M 8m4s\n 22750K .......... .......... .......... .......... .......... 4% 654K 8m5s\n 22800K .......... .......... .......... .......... .......... 4% 239K 8m9s\n 22850K .......... .......... .......... .......... .......... 4% 161M 8m8s\n 22900K .......... .......... .......... .......... .......... 4% 63.9M 8m6s\n 22950K .......... .......... .......... .......... .......... 4% 152M 8m5s\n 23000K .......... .......... .......... .......... .......... 4% 1.55M 8m5s\n 23050K .......... .......... .......... .......... .......... 4% 1.22M 8m5s\n 23100K .......... .......... .......... .......... .......... 4% 1.23M 8m4s\n 23150K .......... .......... .......... .......... .......... 4% 438K 8m6s\n 23200K .......... .......... .......... .......... .......... 4% 139M 8m5s\n 23250K .......... .......... .......... .......... .......... 4% 1.98M 8m4s\n 23300K .......... .......... .......... .......... .......... 4% 1.18M 8m4s\n 23350K .......... .......... .......... .......... .......... 4% 1.23M 8m4s\n 23400K .......... .......... .......... .......... .......... 4% 1.16M 8m4s\n 23450K .......... .......... .......... .......... .......... 4% 1.19M 8m4s\n 23500K .......... .......... .......... .......... .......... 4% 1.20M 8m3s\n 23550K .......... .......... .......... .......... .......... 4% 917K 8m3s\n 23600K .......... .......... .......... .......... .......... 4% 1.18M 8m3s\n 23650K .......... .......... .......... .......... .......... 4% 1.21M 8m3s\n 23700K .......... .......... .......... .......... .......... 4% 1.19M 8m3s\n 23750K .......... .......... .......... .......... .......... 4% 1.16M 8m3s\n 23800K .......... .......... .......... .......... .......... 4% 1015K 8m3s\n 23850K .......... .......... .......... .......... .......... 4% 1.50M 8m2s\n 23900K .......... .......... .......... .......... .......... 4% 1.19M 8m2s\n 23950K .......... .......... .......... .......... .......... 4% 898K 8m2s\n 24000K .......... .......... .......... .......... .......... 4% 1.17M 8m2s\n 24050K .......... .......... .......... .......... .......... 4% 1.16M 8m2s\n 24100K .......... .......... .......... .......... .......... 4% 1.20M 8m2s\n 24150K .......... .......... .......... .......... .......... 4% 1.19M 8m2s\n 24200K .......... .......... .......... .......... .......... 4% 1.19M 8m1s\n 24250K .......... .......... .......... .......... .......... 4% 1.20M 8m1s\n 24300K .......... .......... .......... .......... .......... 4% 1.16M 8m1s\n 24350K .......... .......... .......... .......... .......... 4% 867K 8m1s\n 24400K .......... .......... .......... .......... .......... 4% 1.30M 8m1s\n 24450K .......... .......... .......... .......... .......... 4% 1.21M 8m1s\n 24500K .......... .......... .......... .......... .......... 4% 1.18M 8m1s\n 24550K .......... .......... .......... .......... .......... 4% 1.21M 8m0s\n 24600K .......... .......... .......... .......... .......... 4% 1.18M 8m0s\n 24650K .......... .......... .......... .......... .......... 4% 1.19M 8m0s\n 24700K .......... .......... .......... .......... .......... 4% 1.20M 8m0s\n 24750K .......... .......... .......... .......... .......... 4% 865K 8m0s\n 24800K .......... .......... .......... .......... .......... 4% 1.26M 8m0s\n 24850K .......... .......... .......... .......... .......... 4% 1.16M 8m0s\n 24900K .......... .......... .......... .......... .......... 4% 1.19M 7m59s\n 24950K .......... .......... .......... .......... .......... 4% 1.22M 7m59s\n 25000K .......... .......... .......... .......... .......... 4% 1.15M 7m59s\n 25050K .......... .......... .......... .......... .......... 4% 1.22M 7m59s\n 25100K .......... .......... .......... .......... .......... 4% 1.20M 7m59s\n 25150K .......... .......... .......... .......... .......... 4% 898K 7m59s\n 25200K .......... .......... .......... .......... .......... 4% 1.20M 7m59s\n 25250K .......... .......... .......... .......... .......... 4% 1.20M 7m59s\n 25300K .......... .......... .......... .......... .......... 4% 1.19M 7m58s\n 25350K .......... .......... .......... .......... .......... 4% 1.11M 7m58s\n 25400K .......... .......... .......... .......... .......... 4% 1.24M 7m58s\n 25450K .......... .......... .......... .......... .......... 4% 1.19M 7m58s\n 25500K .......... .......... .......... .......... .......... 4% 1.13M 7m58s\n 25550K .......... .......... .......... .......... .......... 4% 190K 8m2s\n 25600K .......... .......... .......... .......... .......... 4% 178M 8m1s\n 25650K .......... .......... .......... .......... .......... 4% 25.4M 8m0s\n 25700K .......... .......... .......... .......... .......... 4% 1.55M 8m0s\n 25750K .......... .......... .......... .......... .......... 4% 191M 7m59s\n 25800K .......... .......... .......... .......... .......... 4% 574K 7m59s\n 25850K .......... .......... .......... .......... .......... 4% 246K 8m2s\n 25900K .......... .......... .......... .......... .......... 4% 88.7M 8m1s\n 25950K .......... .......... .......... .......... .......... 4% 128M 8m1s\n 26000K .......... .......... .......... .......... .......... 4% 1.01M 8m0s\n 26050K .......... .......... .......... .......... .......... 4% 1.40M 8m0s\n 26100K .......... .......... .......... .......... .......... 4% 1.18M 8m0s\n 26150K .......... .......... .......... .......... .......... 4% 1.19M 8m0s\n 26200K .......... .......... .......... .......... .......... 4% 1.16M 8m0s\n 26250K .......... .......... .......... .......... .......... 4% 1.20M 8m0s\n 26300K .......... .......... .......... .......... .......... 4% 1.20M 7m59s\n 26350K .......... .......... .......... .......... .......... 4% 891K 7m59s\n 26400K .......... .......... .......... .......... .......... 4% 1.20M 7m59s\n 26450K .......... .......... .......... .......... .......... 4% 1.20M 7m59s\n 26500K .......... .......... .......... .......... .......... 4% 1.16M 7m59s\n 26550K .......... .......... .......... .......... .......... 5% 1.17M 7m59s\n 26600K .......... .......... .......... .......... .......... 5% 1.18M 7m59s\n 26650K .......... .......... .......... .......... .......... 5% 1.20M 7m58s\n 26700K .......... .......... .......... .......... .......... 5% 1.22M 7m58s\n 26750K .......... .......... .......... .......... .......... 5% 901K 7m58s\n 26800K .......... .......... .......... .......... .......... 5% 1.19M 7m58s\n 26850K .......... .......... .......... .......... .......... 5% 1.21M 7m58s\n 26900K .......... .......... .......... .......... .......... 5% 1.18M 7m58s\n 26950K .......... .......... .......... .......... .......... 5% 1.19M 7m58s\n 27000K .......... .......... .......... .......... .......... 5% 1.15M 7m58s\n 27050K .......... .......... .......... .......... .......... 5% 245K 8m0s\n 27100K .......... .......... .......... .......... .......... 5% 36.9M 8m0s\n 27150K .......... .......... .......... .......... .......... 5% 16.3M 7m59s\n 27200K .......... .......... .......... .......... .......... 5% 5.35M 7m58s\n 27250K .......... .......... .......... .......... .......... 5% 1.27M 7m58s\n 27300K .......... .......... .......... .......... .......... 5% 1.17M 7m58s\n 27350K .......... .......... .......... .......... .......... 5% 1.16M 7m57s\n 27400K .......... .......... .......... .......... .......... 5% 1.22M 7m57s\n 27450K .......... .......... .......... .......... .......... 5% 1.20M 7m57s\n 27500K .......... .......... .......... .......... .......... 5% 1.21M 7m57s\n 27550K .......... .......... .......... .......... .......... 5% 864K 7m57s\n 27600K .......... .......... .......... .......... .......... 5% 1.26M 7m57s\n 27650K .......... .......... .......... .......... .......... 5% 1.20M 7m57s\n 27700K .......... .......... .......... .......... .......... 5% 1.19M 7m57s\n 27750K .......... .......... .......... .......... .......... 5% 1.18M 7m56s\n 27800K .......... .......... .......... .......... .......... 5% 1.20M 7m56s\n 27850K .......... .......... .......... .......... .......... 5% 1.12M 7m56s\n 27900K .......... .......... .......... .......... .......... 5% 1.25M 7m56s\n 27950K .......... .......... .......... .......... .......... 5% 925K 7m56s\n 28000K .......... .......... .......... .......... .......... 5% 1.19M 7m56s\n 28050K .......... .......... .......... .......... .......... 5% 1.19M 7m56s\n 28100K .......... .......... .......... .......... .......... 5% 1.17M 7m55s\n 28150K .......... .......... .......... .......... .......... 5% 1.19M 7m55s\n 28200K .......... .......... .......... .......... .......... 5% 1.16M 7m55s\n 28250K .......... .......... .......... .......... .......... 5% 1.21M 7m55s\n 28300K .......... .......... .......... .......... .......... 5% 1.19M 7m55s\n 28350K .......... .......... .......... .......... .......... 5% 905K 7m55s\n 28400K .......... .......... .......... .......... .......... 5% 1.18M 7m55s\n 28450K .......... .......... .......... .......... .......... 5% 1.18M 7m55s\n 28500K .......... .......... .......... .......... .......... 5% 1.18M 7m55s\n 28550K .......... .......... .......... .......... .......... 5% 1.20M 7m54s\n 28600K .......... .......... .......... .......... .......... 5% 1.21M 7m54s\n 28650K .......... .......... .......... .......... .......... 5% 1.16M 7m54s\n 28700K .......... .......... .......... .......... .......... 5% 1.21M 7m54s\n 28750K .......... .......... .......... .......... .......... 5% 925K 7m54s\n 28800K .......... .......... .......... .......... .......... 5% 1.18M 7m54s\n 28850K .......... .......... .......... .......... .......... 5% 247K 7m56s\n 28900K .......... .......... .......... .......... .......... 5% 152M 7m56s\n 28950K .......... .......... .......... .......... .......... 5% 12.1M 7m55s\n 29000K .......... .......... .......... .......... .......... 5% 15.9M 7m54s\n 29050K .......... .......... .......... .......... .......... 5% 1.48M 7m54s\n 29100K .......... .......... .......... .......... .......... 5% 1.17M 7m54s\n 29150K .......... .......... .......... .......... .......... 5% 935K 7m54s\n 29200K .......... .......... .......... .......... .......... 5% 1.18M 7m53s\n 29250K .......... .......... .......... .......... .......... 5% 1.18M 7m53s\n 29300K .......... .......... .......... .......... .......... 5% 1.22M 7m53s\n 29350K .......... .......... .......... .......... .......... 5% 1.18M 7m53s\n 29400K .......... .......... .......... .......... .......... 5% 1.18M 7m53s\n 29450K .......... .......... .......... .......... .......... 5% 1.17M 7m53s\n 29500K .......... .......... .......... .......... .......... 5% 1.20M 7m53s\n 29550K .......... .......... .......... .......... .......... 5% 874K 7m53s\n 29600K .......... .......... .......... .......... .......... 5% 1.24M 7m53s\n 29650K .......... .......... .......... .......... .......... 5% 1.18M 7m52s\n 29700K .......... .......... .......... .......... .......... 5% 1.18M 7m52s\n 29750K .......... .......... .......... .......... .......... 5% 1.19M 7m52s\n 29800K .......... .......... .......... .......... .......... 5% 1.20M 7m52s\n 29850K .......... .......... .......... .......... .......... 5% 835K 7m52s\n 29900K .......... .......... .......... .......... .......... 5% 2.21M 7m52s\n 29950K .......... .......... .......... .......... .......... 5% 915K 7m52s\n 30000K .......... .......... .......... .......... .......... 5% 1.18M 7m52s\n 30050K .......... .......... .......... .......... .......... 5% 1.20M 7m51s\n 30100K .......... .......... .......... .......... .......... 5% 1.18M 7m51s\n 30150K .......... .......... .......... .......... .......... 5% 1.20M 7m51s\n 30200K .......... .......... .......... .......... .......... 5% 1.19M 7m51s\n 30250K .......... .......... .......... .......... .......... 5% 1.11M 7m51s\n 30300K .......... .......... .......... .......... .......... 5% 1.26M 7m51s\n 30350K .......... .......... .......... .......... .......... 5% 902K 7m51s\n 30400K .......... .......... .......... .......... .......... 5% 1.21M 7m51s\n 30450K .......... .......... .......... .......... .......... 5% 1.18M 7m51s\n 30500K .......... .......... .......... .......... .......... 5% 1.17M 7m50s\n 30550K .......... .......... .......... .......... .......... 5% 1.19M 7m50s\n 30600K .......... .......... .......... .......... .......... 5% 1.17M 7m50s\n 30650K .......... .......... .......... .......... .......... 5% 1.21M 7m50s\n 30700K .......... .......... .......... .......... .......... 5% 1.19M 7m50s\n 30750K .......... .......... .......... .......... .......... 5% 926K 7m50s\n 30800K .......... .......... .......... .......... .......... 5% 1.16M 7m50s\n 30850K .......... .......... .......... .......... .......... 5% 1.17M 7m50s\n 30900K .......... .......... .......... .......... .......... 5% 1.19M 7m50s\n 30950K .......... .......... .......... .......... .......... 5% 1.22M 7m49s\n 31000K .......... .......... .......... .......... .......... 5% 1.21M 7m49s\n 31050K .......... .......... .......... .......... .......... 5% 1.18M 7m49s\n 31100K .......... .......... .......... .......... .......... 5% 1.17M 7m49s\n 31150K .......... .......... .......... .......... .......... 5% 926K 7m49s\n 31200K .......... .......... .......... .......... .......... 5% 1.18M 7m49s\n 31250K .......... .......... .......... .......... .......... 5% 1.16M 7m49s\n 31300K .......... .......... .......... .......... .......... 5% 1.21M 7m49s\n 31350K .......... .......... .......... .......... .......... 5% 1.20M 7m48s\n 31400K .......... .......... .......... .......... .......... 5% 1.19M 7m48s\n 31450K .......... .......... .......... .......... .......... 5% 1.19M 7m48s\n 31500K .......... .......... .......... .......... .......... 5% 1.17M 7m48s\n 31550K .......... .......... .......... .......... .......... 5% 900K 7m48s\n 31600K .......... .......... .......... .......... .......... 5% 1.19M 7m48s\n 31650K .......... .......... .......... .......... .......... 5% 1.17M 7m48s\n 31700K .......... .......... .......... .......... .......... 5% 1.21M 7m48s\n 31750K .......... .......... .......... .......... .......... 5% 1.18M 7m48s\n 31800K .......... .......... .......... .......... .......... 5% 1.20M 7m47s\n 31850K .......... .......... .......... .......... .......... 5% 1.19M 7m47s\n 31900K .......... .......... .......... .......... .......... 6% 1.19M 7m47s\n 31950K .......... .......... .......... .......... .......... 6% 908K 7m47s\n 32000K .......... .......... .......... .......... .......... 6% 1.18M 7m47s\n 32050K .......... .......... .......... .......... .......... 6% 1.23M 7m47s\n 32100K .......... .......... .......... .......... .......... 6% 1.18M 7m47s\n 32150K .......... .......... .......... .......... .......... 6% 1.19M 7m47s\n 32200K .......... .......... .......... .......... .......... 6% 1.18M 7m47s\n 32250K .......... .......... .......... .......... .......... 6% 1.20M 7m46s\n 32300K .......... .......... .......... .......... .......... 6% 1.18M 7m46s\n 32350K .......... .......... .......... .......... .......... 6% 931K 7m46s\n 32400K .......... .......... .......... .......... .......... 6% 1.19M 7m46s\n 32450K .......... .......... .......... .......... .......... 6% 1.17M 7m46s\n 32500K .......... .......... .......... .......... .......... 6% 1.21M 7m46s\n 32550K .......... .......... .......... .......... .......... 6% 1.16M 7m46s\n 32600K .......... .......... .......... .......... .......... 6% 1.21M 7m46s\n 32650K .......... .......... .......... .......... .......... 6% 1.18M 7m46s\n 32700K .......... .......... .......... .......... .......... 6% 1.19M 7m45s\n 32750K .......... .......... .......... .......... .......... 6% 890K 7m46s\n 32800K .......... .......... .......... .......... .......... 6% 1.17M 7m45s\n 32850K .......... .......... .......... .......... .......... 6% 1.22M 7m45s\n 32900K .......... .......... .......... .......... .......... 6% 1.19M 7m45s\n 32950K .......... .......... .......... .......... .......... 6% 1.18M 7m45s\n 33000K .......... .......... .......... .......... .......... 6% 1.20M 7m45s\n 33050K .......... .......... .......... .......... .......... 6% 1.16M 7m45s\n 33100K .......... .......... .......... .......... .......... 6% 1.23M 7m45s\n 33150K .......... .......... .......... .......... .......... 6% 907K 7m45s\n 33200K .......... .......... .......... .......... .......... 6% 1.19M 7m45s\n 33250K .......... .......... .......... .......... .......... 6% 1.16M 7m44s\n 33300K .......... .......... .......... .......... .......... 6% 221K 7m47s\n 33350K .......... .......... .......... .......... .......... 6% 136M 7m46s\n 33400K .......... .......... .......... .......... .......... 6% 104M 7m46s\n 33450K .......... .......... .......... .......... .......... 6% 501K 7m46s\n 33500K .......... .......... .......... .......... .......... 6% 1.04M 7m46s\n 33550K .......... .......... .......... .......... .......... 6% 893K 7m46s\n 33600K .......... .......... .......... .......... .......... 6% 1.18M 7m46s\n 33650K .......... .......... .......... .......... .......... 6% 1.17M 7m46s\n 33700K .......... .......... .......... .......... .......... 6% 1.22M 7m46s\n 33750K .......... .......... .......... .......... .......... 6% 1.19M 7m46s\n 33800K .......... .......... .......... .......... .......... 6% 1.16M 7m46s\n 33850K .......... .......... .......... .......... .......... 6% 1.21M 7m46s\n 33900K .......... .......... .......... .......... .......... 6% 1.19M 7m46s\n 33950K .......... .......... .......... .......... .......... 6% 909K 7m46s\n 34000K .......... .......... .......... .......... .......... 6% 1.18M 7m45s\n 34050K .......... .......... .......... .......... .......... 6% 1.19M 7m45s\n 34100K .......... .......... .......... .......... .......... 6% 1.19M 7m45s\n 34150K .......... .......... .......... .......... .......... 6% 1.20M 7m45s\n 34200K .......... .......... .......... .......... .......... 6% 1.19M 7m45s\n 34250K .......... .......... .......... .......... .......... 6% 1.18M 7m45s\n 34300K .......... .......... .......... .......... .......... 6% 1.20M 7m45s\n 34350K .......... .......... .......... .......... .......... 6% 916K 7m45s\n 34400K .......... .......... .......... .......... .......... 6% 1.18M 7m45s\n 34450K .......... .......... .......... .......... .......... 6% 1.20M 7m44s\n 34500K .......... .......... .......... .......... .......... 6% 1.19M 7m44s\n 34550K .......... .......... .......... .......... .......... 6% 1.19M 7m44s\n 34600K .......... .......... .......... .......... .......... 6% 1.19M 7m44s\n 34650K .......... .......... .......... .......... .......... 6% 1.14M 7m44s\n 34700K .......... .......... .......... .......... .......... 6% 1.23M 7m44s\n 34750K .......... .......... .......... .......... .......... 6% 907K 7m44s\n 34800K .......... .......... .......... .......... .......... 6% 238K 7m46s\n 34850K .......... .......... .......... .......... .......... 6% 16.8M 7m46s\n 34900K .......... .......... .......... .......... .......... 6% 101M 7m45s\n 34950K .......... .......... .......... .......... .......... 6% 241K 7m47s\n 35000K .......... .......... .......... .......... .......... 6% 90.3M 7m46s\n 35050K .......... .......... .......... .......... .......... 6% 91.3M 7m46s\n 35100K .......... .......... .......... .......... .......... 6% 176M 7m45s\n 35150K .......... .......... .......... .......... .......... 6% 1.06M 7m45s\n 35200K .......... .......... .......... .......... .......... 6% 1.20M 7m45s\n 35250K .......... .......... .......... .......... .......... 6% 1.20M 7m45s\n 35300K .......... .......... .......... .......... .......... 6% 1.16M 7m45s\n 35350K .......... .......... .......... .......... .......... 6% 1.17M 7m44s\n 35400K .......... .......... .......... .......... .......... 6% 1.23M 7m44s\n 35450K .......... .......... .......... .......... .......... 6% 1.17M 7m44s\n 35500K .......... .......... .......... .......... .......... 6% 1.19M 7m44s\n 35550K .......... .......... .......... .......... .......... 6% 929K 7m44s\n 35600K .......... .......... .......... .......... .......... 6% 1.17M 7m44s\n 35650K .......... .......... .......... .......... .......... 6% 1.15M 7m44s\n 35700K .......... .......... .......... .......... .......... 6% 1.25M 7m44s\n 35750K .......... .......... .......... .......... .......... 6% 1.17M 7m44s\n 35800K .......... .......... .......... .......... .......... 6% 1.16M 7m43s\n 35850K .......... .......... .......... .......... .......... 6% 1.22M 7m43s\n 35900K .......... .......... .......... .......... .......... 6% 1.19M 7m43s\n 35950K .......... .......... .......... .......... .......... 6% 894K 7m43s\n 36000K .......... .......... .......... .......... .......... 6% 1.19M 7m43s\n 36050K .......... .......... .......... .......... .......... 6% 1.19M 7m43s\n 36100K .......... .......... .......... .......... .......... 6% 1.19M 7m43s\n 36150K .......... .......... .......... .......... .......... 6% 1.18M 7m43s\n 36200K .......... .......... .......... .......... .......... 6% 1.17M 7m43s\n 36250K .......... .......... .......... .......... .......... 6% 1.18M 7m43s\n 36300K .......... .......... .......... .......... .......... 6% 1.20M 7m42s\n 36350K .......... .......... .......... .......... .......... 6% 927K 7m42s\n 36400K .......... .......... .......... .......... .......... 6% 1.16M 7m42s\n 36450K .......... .......... .......... .......... .......... 6% 1.23M 7m42s\n 36500K .......... .......... .......... .......... .......... 6% 1.04M 7m42s\n 36550K .......... .......... .......... .......... .......... 6% 1.36M 7m42s\n 36600K .......... .......... .......... .......... .......... 6% 1.21M 7m42s\n 36650K .......... .......... .......... .......... .......... 6% 255K 7m44s\n 36700K .......... .......... .......... .......... .......... 6% 135M 7m43s\n 36750K .......... .......... .......... .......... .......... 6% 271K 7m45s\n 36800K .......... .......... .......... .......... .......... 6% 4.25M 7m44s\n 36850K .......... .......... .......... .......... .......... 6% 12.9M 7m44s\n 36900K .......... .......... .......... .......... .......... 6% 126M 7m43s\n 36950K .......... .......... .......... .......... .......... 6% 174M 7m42s\n 37000K .......... .......... .......... .......... .......... 6% 1.10M 7m42s\n 37050K .......... .......... .......... .......... .......... 6% 1.17M 7m42s\n 37100K .......... .......... .......... .......... .......... 6% 1.20M 7m42s\n 37150K .......... .......... .......... .......... .......... 6% 937K 7m42s\n 37200K .......... .......... .......... .......... .......... 7% 1.17M 7m42s\n 37250K .......... .......... .......... .......... .......... 7% 1.20M 7m42s\n 37300K .......... .......... .......... .......... .......... 7% 1.18M 7m42s\n 37350K .......... .......... .......... .......... .......... 7% 1.18M 7m42s\n 37400K .......... .......... .......... .......... .......... 7% 1.20M 7m42s\n 37450K .......... .......... .......... .......... .......... 7% 1.20M 7m41s\n 37500K .......... .......... .......... .......... .......... 7% 1.14M 7m41s\n 37550K .......... .......... .......... .......... .......... 7% 878K 7m41s\n 37600K .......... .......... .......... .......... .......... 7% 1.32M 7m41s\n 37650K .......... .......... .......... .......... .......... 7% 1.18M 7m41s\n 37700K .......... .......... .......... .......... .......... 7% 1.18M 7m41s\n 37750K .......... .......... .......... .......... .......... 7% 1.18M 7m41s\n 37800K .......... .......... .......... .......... .......... 7% 1.16M 7m41s\n 37850K .......... .......... .......... .......... .......... 7% 1.16M 7m41s\n 37900K .......... .......... .......... .......... .......... 7% 1.27M 7m41s\n 37950K .......... .......... .......... .......... .......... 7% 894K 7m41s\n 38000K .......... .......... .......... .......... .......... 7% 1.15M 7m41s\n 38050K .......... .......... .......... .......... .......... 7% 1.22M 7m40s\n 38100K .......... .......... .......... .......... .......... 7% 1.18M 7m40s\n 38150K .......... .......... .......... .......... .......... 7% 1.18M 7m40s\n 38200K .......... .......... .......... .......... .......... 7% 1.21M 7m40s\n 38250K .......... .......... .......... .......... .......... 7% 1.17M 7m40s\n 38300K .......... .......... .......... .......... .......... 7% 1.16M 7m40s\n 38350K .......... .......... .......... .......... .......... 7% 946K 7m40s\n 38400K .......... .......... .......... .......... .......... 7% 1.16M 7m40s\n 38450K .......... .......... .......... .......... .......... 7% 1.22M 7m40s\n 38500K .......... .......... .......... .......... .......... 7% 246K 7m42s\n 38550K .......... .......... .......... .......... .......... 7% 71.1M 7m41s\n 38600K .......... .......... .......... .......... .......... 7% 29.2M 7m40s\n 38650K .......... .......... .......... .......... .......... 7% 17.9M 7m40s\n 38700K .......... .......... .......... .......... .......... 7% 1.53M 7m40s\n 38750K .......... .......... .......... .......... .......... 7% 898K 7m40s\n 38800K .......... .......... .......... .......... .......... 7% 1.22M 7m39s\n 38850K .......... .......... .......... .......... .......... 7% 1.18M 7m39s\n 38900K .......... .......... .......... .......... .......... 7% 1.21M 7m39s\n 38950K .......... .......... .......... .......... .......... 7% 1.16M 7m39s\n 39000K .......... .......... .......... .......... .......... 7% 1.21M 7m39s\n 39050K .......... .......... .......... .......... .......... 7% 1.17M 7m39s\n 39100K .......... .......... .......... .......... .......... 7% 1.19M 7m39s\n 39150K .......... .......... .......... .......... .......... 7% 900K 7m39s\n 39200K .......... .......... .......... .......... .......... 7% 1.22M 7m39s\n 39250K .......... .......... .......... .......... .......... 7% 1.16M 7m39s\n 39300K .......... .......... .......... .......... .......... 7% 1.20M 7m38s\n 39350K .......... .......... .......... .......... .......... 7% 1.20M 7m38s\n 39400K .......... .......... .......... .......... .......... 7% 1.12M 7m38s\n 39450K .......... .......... .......... .......... .......... 7% 1.22M 7m38s\n 39500K .......... .......... .......... .......... .......... 7% 1.22M 7m38s\n 39550K .......... .......... .......... .......... .......... 7% 904K 7m38s\n 39600K .......... .......... .......... .......... .......... 7% 1.10M 7m38s\n 39650K .......... .......... .......... .......... .......... 7% 1.28M 7m38s\n 39700K .......... .......... .......... .......... .......... 7% 1.09M 7m38s\n 39750K .......... .......... .......... .......... .......... 7% 1.31M 7m38s\n 39800K .......... .......... .......... .......... .......... 7% 1.18M 7m38s\n 39850K .......... .......... .......... .......... .......... 7% 1.22M 7m37s\n 39900K .......... .......... .......... .......... .......... 7% 1.18M 7m37s\n 39950K .......... .......... .......... .......... .......... 7% 925K 7m37s\n 40000K .......... .......... .......... .......... .......... 7% 1.18M 7m37s\n 40050K .......... .......... .......... .......... .......... 7% 1.19M 7m37s\n 40100K .......... .......... .......... .......... .......... 7% 1.20M 7m37s\n 40150K .......... .......... .......... .......... .......... 7% 1.15M 7m37s\n 40200K .......... .......... .......... .......... .......... 7% 1.19M 7m37s\n 40250K .......... .......... .......... .......... .......... 7% 1.11M 7m37s\n 40300K .......... .......... .......... .......... .......... 7% 1.28M 7m37s\n 40350K .......... .......... .......... .......... .......... 7% 914K 7m37s\n 40400K .......... .......... .......... .......... .......... 7% 1.17M 7m37s\n 40450K .......... .......... .......... .......... .......... 7% 1.09M 7m36s\n 40500K .......... .......... .......... .......... .......... 7% 198K 7m39s\n 40550K .......... .......... .......... .......... .......... 7% 51.6M 7m38s\n 40600K .......... .......... .......... .......... .......... 7% 44.8M 7m38s\n 40650K .......... .......... .......... .......... .......... 7% 113M 7m37s\n 40700K .......... .......... .......... .......... .......... 7% 140M 7m36s\n 40750K .......... .......... .......... .......... .......... 7% 673K 7m37s\n 40800K .......... .......... .......... .......... .......... 7% 1.18M 7m37s\n 40850K .......... .......... .......... .......... .......... 7% 1.17M 7m37s\n 40900K .......... .......... .......... .......... .......... 7% 1.20M 7m36s\n 40950K .......... .......... .......... .......... .......... 7% 1.11M 7m36s\n 41000K .......... .......... .......... .......... .......... 7% 1.28M 7m36s\n 41050K .......... .......... .......... .......... .......... 7% 1.16M 7m36s\n 41100K .......... .......... .......... .......... .......... 7% 1.21M 7m36s\n 41150K .......... .......... .......... .......... .......... 7% 910K 7m36s\n 41200K .......... .......... .......... .......... .......... 7% 1.19M 7m36s\n 41250K .......... .......... .......... .......... .......... 7% 1.18M 7m36s\n 41300K .......... .......... .......... .......... .......... 7% 1.19M 7m36s\n 41350K .......... .......... .......... .......... .......... 7% 1.18M 7m36s\n 41400K .......... .......... .......... .......... .......... 7% 1.21M 7m36s\n 41450K .......... .......... .......... .......... .......... 7% 1.19M 7m35s\n 41500K .......... .......... .......... .......... .......... 7% 236K 7m37s\n 41550K .......... .......... .......... .......... .......... 7% 111M 7m37s\n 41600K .......... .......... .......... .......... .......... 7% 80.3M 7m36s\n 41650K .......... .......... .......... .......... .......... 7% 37.0M 7m36s\n 41700K .......... .......... .......... .......... .......... 7% 228K 7m38s\n 41750K .......... .......... .......... .......... .......... 7% 403M 7m37s\n 41800K .......... .......... .......... .......... .......... 7% 517M 7m36s\n 41850K .......... .......... .......... .......... .......... 7% 39.8M 7m36s\n 41900K .......... .......... .......... .......... .......... 7% 255M 7m35s\n 41950K .......... .......... .......... .......... .......... 7% 607K 7m36s\n 42000K .......... .......... .......... .......... .......... 7% 1.06M 7m35s\n 42050K .......... .......... .......... .......... .......... 7% 1.25M 7m35s\n 42100K .......... .......... .......... .......... .......... 7% 1.24M 7m35s\n 42150K .......... .......... .......... .......... .......... 7% 1.18M 7m35s\n 42200K .......... .......... .......... .......... .......... 7% 1.20M 7m35s\n 42250K .......... .......... .......... .......... .......... 7% 1.21M 7m35s\n 42300K .......... .......... .......... .......... .......... 7% 1.17M 7m35s\n 42350K .......... .......... .......... .......... .......... 7% 912K 7m35s\n 42400K .......... .......... .......... .......... .......... 7% 1.16M 7m35s\n 42450K .......... .......... .......... .......... .......... 7% 1.20M 7m35s\n 42500K .......... .......... .......... .......... .......... 8% 261K 7m36s\n 42550K .......... .......... .......... .......... .......... 8% 86.2M 7m36s\n 42600K .......... .......... .......... .......... .......... 8% 103M 7m35s\n 42650K .......... .......... .......... .......... .......... 8% 144M 7m35s\n 42700K .......... .......... .......... .......... .......... 8% 1.02M 7m35s\n 42750K .......... .......... .......... .......... .......... 8% 928K 7m35s\n 42800K .......... .......... .......... .......... .......... 8% 1.19M 7m34s\n 42850K .......... .......... .......... .......... .......... 8% 1.18M 7m34s\n 42900K .......... .......... .......... .......... .......... 8% 1.21M 7m34s\n 42950K .......... .......... .......... .......... .......... 8% 1.18M 7m34s\n 43000K .......... .......... .......... .......... .......... 8% 1.17M 7m34s\n 43050K .......... .......... .......... .......... .......... 8% 1.21M 7m34s\n 43100K .......... .......... .......... .......... .......... 8% 977K 7m34s\n 43150K .......... .......... .......... .......... .......... 8% 1.08M 7m34s\n 43200K .......... .......... .......... .......... .......... 8% 1.15M 7m34s\n 43250K .......... .......... .......... .......... .......... 8% 1.24M 7m34s\n 43300K .......... .......... .......... .......... .......... 8% 1.20M 7m34s\n 43350K .......... .......... .......... .......... .......... 8% 1.19M 7m33s\n 43400K .......... .......... .......... .......... .......... 8% 1.18M 7m33s\n 43450K .......... .......... .......... .......... .......... 8% 1.04M 7m33s\n 43500K .......... .......... .......... .......... .......... 8% 1.33M 7m33s\n 43550K .......... .......... .......... .......... .......... 8% 935K 7m33s\n 43600K .......... .......... .......... .......... .......... 8% 1.19M 7m33s\n 43650K .......... .......... .......... .......... .......... 8% 1.17M 7m33s\n 43700K .......... .......... .......... .......... .......... 8% 1.20M 7m33s\n 43750K .......... .......... .......... .......... .......... 8% 1.15M 7m33s\n 43800K .......... .......... .......... .......... .......... 8% 1.22M 7m33s\n 43850K .......... .......... .......... .......... .......... 8% 1.15M 7m33s\n 43900K .......... .......... .......... .......... .......... 8% 1.17M 7m32s\n 43950K .......... .......... .......... .......... .......... 8% 917K 7m32s\n 44000K .......... .......... .......... .......... .......... 8% 1.17M 7m32s\n 44050K .......... .......... .......... .......... .......... 8% 1.21M 7m32s\n 44100K .......... .......... .......... .......... .......... 8% 1.21M 7m32s\n 44150K .......... .......... .......... .......... .......... 8% 1.17M 7m32s\n 44200K .......... .......... .......... .......... .......... 8% 1.17M 7m32s\n 44250K .......... .......... .......... .......... .......... 8% 1.18M 7m32s\n 44300K .......... .......... .......... .......... .......... 8% 1.18M 7m32s\n 44350K .......... .......... .......... .......... .......... 8% 914K 7m32s\n 44400K .......... .......... .......... .......... .......... 8% 1.17M 7m32s\n 44450K .......... .......... .......... .......... .......... 8% 1.20M 7m32s\n 44500K .......... .......... .......... .......... .......... 8% 1.19M 7m31s\n 44550K .......... .......... .......... .......... .......... 8% 1.19M 7m31s\n 44600K .......... .......... .......... .......... .......... 8% 1.18M 7m31s\n 44650K .......... .......... .......... .......... .......... 8% 1.18M 7m31s\n 44700K .......... .......... .......... .......... .......... 8% 1.20M 7m31s\n 44750K .......... .......... .......... .......... .......... 8% 898K 7m31s\n 44800K .......... .......... .......... .......... .......... 8% 1.23M 7m31s\n 44850K .......... .......... .......... .......... .......... 8% 1.18M 7m31s\n 44900K .......... .......... .......... .......... .......... 8% 418K 7m32s\n 44950K .......... .......... .......... .......... .......... 8% 83.7M 7m31s\n 45000K .......... .......... .......... .......... .......... 8% 7.53M 7m31s\n 45050K .......... .......... .......... .......... .......... 8% 1.25M 7m31s\n 45100K .......... .......... .......... .......... .......... 8% 1.18M 7m30s\n 45150K .......... .......... .......... .......... .......... 8% 901K 7m30s\n 45200K .......... .......... .......... .......... .......... 8% 252K 7m32s\n 45250K .......... .......... .......... .......... .......... 8% 27.7M 7m32s\n 45300K .......... .......... .......... .......... .......... 8% 14.3M 7m31s\n 45350K .......... .......... .......... .......... .......... 8% 979K 7m31s\n 45400K .......... .......... .......... .......... .......... 8% 1.46M 7m31s\n 45450K .......... .......... .......... .......... .......... 8% 1.84M 7m31s\n 45500K .......... .......... .......... .......... .......... 8% 1.15M 7m31s\n 45550K .......... .......... .......... .......... .......... 8% 912K 7m31s\n 45600K .......... .......... .......... .......... .......... 8% 1.22M 7m30s\n 45650K .......... .......... .......... .......... .......... 8% 1.18M 7m30s\n 45700K .......... .......... .......... .......... .......... 8% 1.18M 7m30s\n 45750K .......... .......... .......... .......... .......... 8% 1.13M 7m30s\n 45800K .......... .......... .......... .......... .......... 8% 1.25M 7m30s\n 45850K .......... .......... .......... .......... .......... 8% 245K 7m32s\n 45900K .......... .......... .......... .......... .......... 8% 51.4M 7m31s\n 45950K .......... .......... .......... .......... .......... 8% 11.2M 7m31s\n 46000K .......... .......... .......... .......... .......... 8% 16.3M 7m30s\n 46050K .......... .......... .......... .......... .......... 8% 1.13M 7m30s\n 46100K .......... .......... .......... .......... .......... 8% 1.23M 7m30s\n 46150K .......... .......... .......... .......... .......... 8% 1.20M 7m30s\n 46200K .......... .......... .......... .......... .......... 8% 1.18M 7m30s\n 46250K .......... .......... .......... .......... .......... 8% 1.21M 7m30s\n 46300K .......... .......... .......... .......... .......... 8% 1.16M 7m30s\n 46350K .......... .......... .......... .......... .......... 8% 921K 7m30s\n 46400K .......... .......... .......... .......... .......... 8% 1.18M 7m29s\n 46450K .......... .......... .......... .......... .......... 8% 1.20M 7m29s\n 46500K .......... .......... .......... .......... .......... 8% 1.17M 7m29s\n 46550K .......... .......... .......... .......... .......... 8% 1.08M 7m29s\n 46600K .......... .......... .......... .......... .......... 8% 1.35M 7m29s\n 46650K .......... .......... .......... .......... .......... 8% 1.11M 7m29s\n 46700K .......... .......... .......... .......... .......... 8% 1.22M 7m29s\n 46750K .......... .......... .......... .......... .......... 8% 925K 7m29s\n 46800K .......... .......... .......... .......... .......... 8% 1.20M 7m29s\n 46850K .......... .......... .......... .......... .......... 8% 1.16M 7m29s\n 46900K .......... .......... .......... .......... .......... 8% 1.20M 7m29s\n 46950K .......... .......... .......... .......... .......... 8% 1.12M 7m29s\n 47000K .......... .......... .......... .......... .......... 8% 1.27M 7m28s\n 47050K .......... .......... .......... .......... .......... 8% 251K 7m30s\n 47100K .......... .......... .......... .......... .......... 8% 163M 7m29s\n 47150K .......... .......... .......... .......... .......... 8% 18.8M 7m29s\n 47200K .......... .......... .......... .......... .......... 8% 132M 7m28s\n 47250K .......... .......... .......... .......... .......... 8% 912K 7m28s\n 47300K .......... .......... .......... .......... .......... 8% 1.20M 7m28s\n 47350K .......... .......... .......... .......... .......... 8% 1.20M 7m28s\n 47400K .......... .......... .......... .......... .......... 8% 1.21M 7m28s\n 47450K .......... .......... .......... .......... .......... 8% 1.18M 7m28s\n 47500K .......... .......... .......... .......... .......... 8% 1.14M 7m28s\n 47550K .......... .......... .......... .......... .......... 8% 906K 7m28s\n 47600K .......... .......... .......... .......... .......... 8% 1.21M 7m28s\n 47650K .......... .......... .......... .......... .......... 8% 1.20M 7m28s\n 47700K .......... .......... .......... .......... .......... 8% 1.15M 7m28s\n 47750K .......... .......... .......... .......... .......... 8% 1.21M 7m28s\n 47800K .......... .......... .......... .......... .......... 8% 1.18M 7m28s\n 47850K .......... .......... .......... .......... .......... 9% 1.19M 7m27s\n 47900K .......... .......... .......... .......... .......... 9% 1.21M 7m27s\n 47950K .......... .......... .......... .......... .......... 9% 922K 7m27s\n 48000K .......... .......... .......... .......... .......... 9% 1.18M 7m27s\n 48050K .......... .......... .......... .......... .......... 9% 1.17M 7m27s\n 48100K .......... .......... .......... .......... .......... 9% 1.19M 7m27s\n 48150K .......... .......... .......... .......... .......... 9% 1.17M 7m27s\n 48200K .......... .......... .......... .......... .......... 9% 1.20M 7m27s\n 48250K .......... .......... .......... .......... .......... 9% 1.20M 7m27s\n 48300K .......... .......... .......... .......... .......... 9% 1.19M 7m27s\n 48350K .......... .......... .......... .......... .......... 9% 908K 7m27s\n 48400K .......... .......... .......... .......... .......... 9% 1.19M 7m27s\n 48450K .......... .......... .......... .......... .......... 9% 1.13M 7m27s\n 48500K .......... .......... .......... .......... .......... 9% 1.17M 7m26s\n 48550K .......... .......... .......... .......... .......... 9% 1.19M 7m26s\n 48600K .......... .......... .......... .......... .......... 9% 1.18M 7m26s\n 48650K .......... .......... .......... .......... .......... 9% 1.20M 7m26s\n 48700K .......... .......... .......... .......... .......... 9% 1.19M 7m26s\n 48750K .......... .......... .......... .......... .......... 9% 877K 7m26s\n 48800K .......... .......... .......... .......... .......... 9% 1.20M 7m26s\n 48850K .......... .......... .......... .......... .......... 9% 1.20M 7m26s\n 48900K .......... .......... .......... .......... .......... 9% 1.17M 7m26s\n 48950K .......... .......... .......... .......... .......... 9% 1.19M 7m26s\n 49000K .......... .......... .......... .......... .......... 9% 1.18M 7m26s\n 49050K .......... .......... .......... .......... .......... 9% 1.19M 7m26s\n 49100K .......... .......... .......... .......... .......... 9% 1.18M 7m25s\n 49150K .......... .......... .......... .......... .......... 9% 858K 7m26s\n 49200K .......... .......... .......... .......... .......... 9% 1.24M 7m25s\n 49250K .......... .......... .......... .......... .......... 9% 1.18M 7m25s\n 49300K .......... .......... .......... .......... .......... 9% 1.19M 7m25s\n 49350K .......... .......... .......... .......... .......... 9% 1.17M 7m25s\n 49400K .......... .......... .......... .......... .......... 9% 1.20M 7m25s\n 49450K .......... .......... .......... .......... .......... 9% 1.18M 7m25s\n 49500K .......... .......... .......... .......... .......... 9% 1.18M 7m25s\n 49550K .......... .......... .......... .......... .......... 9% 932K 7m25s\n 49600K .......... .......... .......... .......... .......... 9% 1.17M 7m25s\n 49650K .......... .......... .......... .......... .......... 9% 1.21M 7m25s\n 49700K .......... .......... .......... .......... .......... 9% 1.10M 7m25s\n 49750K .......... .......... .......... .......... .......... 9% 1.21M 7m25s\n 49800K .......... .......... .......... .......... .......... 9% 1.16M 7m24s\n 49850K .......... .......... .......... .......... .......... 9% 1.19M 7m24s\n 49900K .......... .......... .......... .......... .......... 9% 1.20M 7m24s\n 49950K .......... .......... .......... .......... .......... 9% 579K 7m25s\n 50000K .......... .......... .......... .......... .......... 9% 4.48M 7m24s\n 50050K .......... .......... .......... .......... .......... 9% 1.20M 7m24s\n 50100K .......... .......... .......... .......... .......... 9% 1.16M 7m24s\n 50150K .......... .......... .......... .......... .......... 9% 1.19M 7m24s\n 50200K .......... .......... .......... .......... .......... 9% 1.15M 7m24s\n 50250K .......... .......... .......... .......... .......... 9% 1.20M 7m24s\n 50300K .......... .......... .......... .......... .......... 9% 1.18M 7m24s\n 50350K .......... .......... .......... .......... .......... 9% 907K 7m24s\n 50400K .......... .......... .......... .......... .......... 9% 1.19M 7m24s\n 50450K .......... .......... .......... .......... .......... 9% 1.11M 7m24s\n 50500K .......... .......... .......... .......... .......... 9% 1.18M 7m23s\n 50550K .......... .......... .......... .......... .......... 9% 1.15M 7m23s\n 50600K .......... .......... .......... .......... .......... 9% 1.23M 7m23s\n 50650K .......... .......... .......... .......... .......... 9% 1.21M 7m23s\n 50700K .......... .......... .......... .......... .......... 9% 1.18M 7m23s\n 50750K .......... .......... .......... .......... .......... 9% 899K 7m23s\n 50800K .......... .......... .......... .......... .......... 9% 1.18M 7m23s\n 50850K .......... .......... .......... .......... .......... 9% 1.17M 7m23s\n 50900K .......... .......... .......... .......... .......... 9% 1.19M 7m23s\n 50950K .......... .......... .......... .......... .......... 9% 1.18M 7m23s\n 51000K .......... .......... .......... .......... .......... 9% 1.19M 7m23s\n 51050K .......... .......... .......... .......... .......... 9% 1.16M 7m23s\n 51100K .......... .......... .......... .......... .......... 9% 1.19M 7m22s\n 51150K .......... .......... .......... .......... .......... 9% 932K 7m22s\n 51200K .......... .......... .......... .......... .......... 9% 1.14M 7m22s\n 51250K .......... .......... .......... .......... .......... 9% 1.23M 7m22s\n 51300K .......... .......... .......... .......... .......... 9% 1.19M 7m22s\n 51350K .......... .......... .......... .......... .......... 9% 1.16M 7m22s\n 51400K .......... .......... .......... .......... .......... 9% 1.20M 7m22s\n 51450K .......... .......... .......... .......... .......... 9% 1.20M 7m22s\n 51500K .......... .......... .......... .......... .......... 9% 1.19M 7m22s\n 51550K .......... .......... .......... .......... .......... 9% 883K 7m22s\n 51600K .......... .......... .......... .......... .......... 9% 1.21M 7m22s\n 51650K .......... .......... .......... .......... .......... 9% 1.22M 7m22s\n 51700K .......... .......... .......... .......... .......... 9% 1.14M 7m22s\n 51750K .......... .......... .......... .......... .......... 9% 1.23M 7m22s\n 51800K .......... .......... .......... .......... .......... 9% 1.19M 7m21s\n 51850K .......... .......... .......... .......... .......... 9% 1.19M 7m21s\n 51900K .......... .......... .......... .......... .......... 9% 1.17M 7m21s\n 51950K .......... .......... .......... .......... .......... 9% 919K 7m21s\n 52000K .......... .......... .......... .......... .......... 9% 1.18M 7m21s\n 52050K .......... .......... .......... .......... .......... 9% 1.17M 7m21s\n 52100K .......... .......... .......... .......... .......... 9% 1.18M 7m21s\n 52150K .......... .......... .......... .......... .......... 9% 1.19M 7m21s\n 52200K .......... .......... .......... .......... .......... 9% 1.17M 7m21s\n 52250K .......... .......... .......... .......... .......... 9% 1.22M 7m21s\n 52300K .......... .......... .......... .......... .......... 9% 1.18M 7m21s\n 52350K .......... .......... .......... .......... .......... 9% 916K 7m21s\n 52400K .......... .......... .......... .......... .......... 9% 1.19M 7m21s\n 52450K .......... .......... .......... .......... .......... 9% 1.15M 7m21s\n 52500K .......... .......... .......... .......... .......... 9% 1.24M 7m20s\n 52550K .......... .......... .......... .......... .......... 9% 1.13M 7m20s\n 52600K .......... .......... .......... .......... .......... 9% 1.24M 7m20s\n 52650K .......... .......... .......... .......... .......... 9% 1.18M 7m20s\n 52700K .......... .......... .......... .......... .......... 9% 1.18M 7m20s\n 52750K .......... .......... .......... .......... .......... 9% 924K 7m20s\n 52800K .......... .......... .......... .......... .......... 9% 1.18M 7m20s\n 52850K .......... .......... .......... .......... .......... 9% 1.13M 7m20s\n 52900K .......... .......... .......... .......... .......... 9% 1.25M 7m20s\n 52950K .......... .......... .......... .......... .......... 9% 1.22M 7m20s\n 53000K .......... .......... .......... .......... .......... 9% 1.18M 7m20s\n 53050K .......... .......... .......... .......... .......... 9% 1.15M 7m20s\n 53100K .......... .......... .......... .......... .......... 9% 1.21M 7m19s\n 53150K .......... .......... .......... .......... .......... 10% 910K 7m20s\n 53200K .......... .......... .......... .......... .......... 10% 1.17M 7m19s\n 53250K .......... .......... .......... .......... .......... 10% 1.19M 7m19s\n 53300K .......... .......... .......... .......... .......... 10% 1.19M 7m19s\n 53350K .......... .......... .......... .......... .......... 10% 1.19M 7m19s\n 53400K .......... .......... .......... .......... .......... 10% 1.16M 7m19s\n 53450K .......... .......... .......... .......... .......... 10% 1.21M 7m19s\n 53500K .......... .......... .......... .......... .......... 10% 1.19M 7m19s\n 53550K .......... .......... .......... .......... .......... 10% 875K 7m19s\n 53600K .......... .......... .......... .......... .......... 10% 1.27M 7m19s\n 53650K .......... .......... .......... .......... .......... 10% 1.19M 7m19s\n 53700K .......... .......... .......... .......... .......... 10% 1.19M 7m19s\n 53750K .......... .......... .......... .......... .......... 10% 1.17M 7m19s\n 53800K .......... .......... .......... .......... .......... 10% 1.21M 7m18s\n 53850K .......... .......... .......... .......... .......... 10% 1.20M 7m18s\n 53900K .......... .......... .......... .......... .......... 10% 238K 7m20s\n 53950K .......... .......... .......... .......... .......... 10% 255M 7m19s\n 54000K .......... .......... .......... .......... .......... 10% 157M 7m19s\n 54050K .......... .......... .......... .......... .......... 10% 1.55M 7m19s\n 54100K .......... .......... .......... .......... .......... 10% 1.04M 7m19s\n 54150K .......... .......... .......... .......... .......... 10% 1.20M 7m19s\n 54200K .......... .......... .......... .......... .......... 10% 1.22M 7m19s\n 54250K .......... .......... .......... .......... .......... 10% 1.18M 7m18s\n 54300K .......... .......... .......... .......... .......... 10% 1.15M 7m18s\n 54350K .......... .......... .......... .......... .......... 10% 932K 7m18s\n 54400K .......... .......... .......... .......... .......... 10% 1.19M 7m18s\n 54450K .......... .......... .......... .......... .......... 10% 1.20M 7m18s\n 54500K .......... .......... .......... .......... .......... 10% 1.18M 7m18s\n 54550K .......... .......... .......... .......... .......... 10% 1.14M 7m18s\n 54600K .......... .......... .......... .......... .......... 10% 1.25M 7m18s\n 54650K .......... .......... .......... .......... .......... 10% 1.18M 7m18s\n 54700K .......... .......... .......... .......... .......... 10% 1.18M 7m18s\n 54750K .......... .......... .......... .......... .......... 10% 217K 7m19s\n 54800K .......... .......... .......... .......... .......... 10% 27.5M 7m19s\n 54850K .......... .......... .......... .......... .......... 10% 209M 7m18s\n 54900K .......... .......... .......... .......... .......... 10% 5.77M 7m18s\n 54950K .......... .......... .......... .......... .......... 10% 12.6M 7m18s\n 55000K .......... .......... .......... .......... .......... 10% 910K 7m18s\n 55050K .......... .......... .......... .......... .......... 10% 1.17M 7m18s\n 55100K .......... .......... .......... .......... .......... 10% 1.20M 7m18s\n 55150K .......... .......... .......... .......... .......... 10% 895K 7m18s\n 55200K .......... .......... .......... .......... .......... 10% 1.14M 7m17s\n 55250K .......... .......... .......... .......... .......... 10% 1.25M 7m17s\n 55300K .......... .......... .......... .......... .......... 10% 1.18M 7m17s\n 55350K .......... .......... .......... .......... .......... 10% 1.20M 7m17s\n 55400K .......... .......... .......... .......... .......... 10% 1.15M 7m17s\n 55450K .......... .......... .......... .......... .......... 10% 1.21M 7m17s\n 55500K .......... .......... .......... .......... .......... 10% 1.17M 7m17s\n 55550K .......... .......... .......... .......... .......... 10% 890K 7m17s\n 55600K .......... .......... .......... .......... .......... 10% 1.25M 7m17s\n 55650K .......... .......... .......... .......... .......... 10% 1.20M 7m17s\n 55700K .......... .......... .......... .......... .......... 10% 1.20M 7m17s\n 55750K .......... .......... .......... .......... .......... 10% 1.15M 7m17s\n 55800K .......... .......... .......... .......... .......... 10% 1.19M 7m17s\n 55850K .......... .......... .......... .......... .......... 10% 1.20M 7m16s\n 55900K .......... .......... .......... .......... .......... 10% 193K 7m18s\n 55950K .......... .......... .......... .......... .......... 10% 60.7M 7m18s\n 56000K .......... .......... .......... .......... .......... 10% 453M 7m17s\n 56050K .......... .......... .......... .......... .......... 10% 1.49M 7m17s\n 56100K .......... .......... .......... .......... .......... 10% 183M 7m17s\n 56150K .......... .......... .......... .......... .......... 10% 741K 7m17s\n 56200K .......... .......... .......... .......... .......... 10% 230K 7m18s\n 56250K .......... .......... .......... .......... .......... 10% 107M 7m18s\n 56300K .......... .......... .......... .......... .......... 10% 176M 7m17s\n 56350K .......... .......... .......... .......... .......... 10% 1.47M 7m17s\n 56400K .......... .......... .......... .......... .......... 10% 1.25M 7m17s\n 56450K .......... .......... .......... .......... .......... 10% 1.15M 7m17s\n 56500K .......... .......... .......... .......... .......... 10% 1.19M 7m17s\n 56550K .......... .......... .......... .......... .......... 10% 1.22M 7m17s\n 56600K .......... .......... .......... .......... .......... 10% 1.05M 7m17s\n 56650K .......... .......... .......... .......... .......... 10% 1.08M 7m17s\n 56700K .......... .......... .......... .......... .......... 10% 1.32M 7m17s\n 56750K .......... .......... .......... .......... .......... 10% 961K 7m17s\n 56800K .......... .......... .......... .......... .......... 10% 1.19M 7m17s\n 56850K .......... .......... .......... .......... .......... 10% 1.26M 7m17s\n 56900K .......... .......... .......... .......... .......... 10% 1.22M 7m16s\n 56950K .......... .......... .......... .......... .......... 10% 1.17M 7m16s\n 57000K .......... .......... .......... .......... .......... 10% 1.19M 7m16s\n 57050K .......... .......... .......... .......... .......... 10% 1.18M 7m16s\n 57100K .......... .......... .......... .......... .......... 10% 1.11M 7m16s\n 57150K .......... .......... .......... .......... .......... 10% 911K 7m16s\n 57200K .......... .......... .......... .......... .......... 10% 235K 7m17s\n 57250K .......... .......... .......... .......... .......... 10% 22.3M 7m17s\n 57300K .......... .......... .......... .......... .......... 10% 368M 7m17s\n 57350K .......... .......... .......... .......... .......... 10% 905K 7m17s\n 57400K .......... .......... .......... .......... .......... 10% 81.2M 7m16s\n 57450K .......... .......... .......... .......... .......... 10% 1.27M 7m16s\n 57500K .......... .......... .......... .......... .......... 10% 1.20M 7m16s\n 57550K .......... .......... .......... .......... .......... 10% 921K 7m16s\n 57600K .......... .......... .......... .......... .......... 10% 1.18M 7m16s\n 57650K .......... .......... .......... .......... .......... 10% 1.14M 7m16s\n 57700K .......... .......... .......... .......... .......... 10% 1.13M 7m16s\n 57750K .......... .......... .......... .......... .......... 10% 253K 7m17s\n 57800K .......... .......... .......... .......... .......... 10% 34.3M 7m17s\n 57850K .......... .......... .......... .......... .......... 10% 285M 7m16s\n 57900K .......... .......... .......... .......... .......... 10% 8.32M 7m16s\n 57950K .......... .......... .......... .......... .......... 10% 1.06M 7m16s\n 58000K .......... .......... .......... .......... .......... 10% 1.14M 7m16s\n 58050K .......... .......... .......... .......... .......... 10% 1.24M 7m16s\n 58100K .......... .......... .......... .......... .......... 10% 1.18M 7m16s\n 58150K .......... .......... .......... .......... .......... 10% 1.17M 7m15s\n 58200K .......... .......... .......... .......... .......... 10% 1.21M 7m15s\n 58250K .......... .......... .......... .......... .......... 10% 1.20M 7m15s\n 58300K .......... .......... .......... .......... .......... 10% 1.19M 7m15s\n 58350K .......... .......... .......... .......... .......... 10% 896K 7m15s\n 58400K .......... .......... .......... .......... .......... 10% 1.19M 7m15s\n 58450K .......... .......... .......... .......... .......... 10% 1.17M 7m15s\n 58500K .......... .......... .......... .......... .......... 11% 1.20M 7m15s\n 58550K .......... .......... .......... .......... .......... 11% 1.18M 7m15s\n 58600K .......... .......... .......... .......... .......... 11% 1.17M 7m15s\n 58650K .......... .......... .......... .......... .......... 11% 1.23M 7m15s\n 58700K .......... .......... .......... .......... .......... 11% 1.17M 7m15s\n 58750K .......... .......... .......... .......... .......... 11% 925K 7m15s\n 58800K .......... .......... .......... .......... .......... 11% 206K 7m16s\n 58850K .......... .......... .......... .......... .......... 11% 88.6M 7m16s\n 58900K .......... .......... .......... .......... .......... 11% 101M 7m15s\n 58950K .......... .......... .......... .......... .......... 11% 453M 7m15s\n 59000K .......... .......... .......... .......... .......... 11% 1.54M 7m15s\n 59050K .......... .......... .......... .......... .......... 11% 1.16M 7m15s\n 59100K .......... .......... .......... .......... .......... 11% 239K 7m16s\n 59150K .......... .......... .......... .......... .......... 11% 314M 7m16s\n 59200K .......... .......... .......... .......... .......... 11% 95.8M 7m15s\n 59250K .......... .......... .......... .......... .......... 11% 435M 7m15s\n 59300K .......... .......... .......... .......... .......... 11% 1.17M 7m15s\n 59350K .......... .......... .......... .......... .......... 11% 1.20M 7m15s\n 59400K .......... .......... .......... .......... .......... 11% 1.19M 7m14s\n 59450K .......... .......... .......... .......... .......... 11% 1.19M 7m14s\n 59500K .......... .......... .......... .......... .......... 11% 1.15M 7m14s\n 59550K .......... .......... .......... .......... .......... 11% 914K 7m14s\n 59600K .......... .......... .......... .......... .......... 11% 1.17M 7m14s\n 59650K .......... .......... .......... .......... .......... 11% 1.21M 7m14s\n 59700K .......... .......... .......... .......... .......... 11% 1.15M 7m14s\n 59750K .......... .......... .......... .......... .......... 11% 1.21M 7m14s\n 59800K .......... .......... .......... .......... .......... 11% 1.16M 7m14s\n 59850K .......... .......... .......... .......... .......... 11% 1.20M 7m14s\n 59900K .......... .......... .......... .......... .......... 11% 1.13M 7m14s\n 59950K .......... .......... .......... .......... .......... 11% 960K 7m14s\n 60000K .......... .......... .......... .......... .......... 11% 1.15M 7m14s\n 60050K .......... .......... .......... .......... .......... 11% 1.23M 7m14s\n 60100K .......... .......... .......... .......... .......... 11% 1.20M 7m14s\n 60150K .......... .......... .......... .......... .......... 11% 1.19M 7m13s\n 60200K .......... .......... .......... .......... .......... 11% 1.17M 7m13s\n 60250K .......... .......... .......... .......... .......... 11% 1.18M 7m13s\n 60300K .......... .......... .......... .......... .......... 11% 1.20M 7m13s\n 60350K .......... .......... .......... .......... .......... 11% 911K 7m13s\n 60400K .......... .......... .......... .......... .......... 11% 1.18M 7m13s\n 60450K .......... .......... .......... .......... .......... 11% 1.18M 7m13s\n 60500K .......... .......... .......... .......... .......... 11% 1.18M 7m13s\n 60550K .......... .......... .......... .......... .......... 11% 1.19M 7m13s\n 60600K .......... .......... .......... .......... .......... 11% 1.19M 7m13s\n 60650K .......... .......... .......... .......... .......... 11% 1.19M 7m13s\n 60700K .......... .......... .......... .......... .......... 11% 1.20M 7m13s\n 60750K .......... .......... .......... .......... .......... 11% 895K 7m13s\n 60800K .......... .......... .......... .......... .......... 11% 1.20M 7m13s\n 60850K .......... .......... .......... .......... .......... 11% 1.19M 7m12s\n 60900K .......... .......... .......... .......... .......... 11% 1.19M 7m12s\n 60950K .......... .......... .......... .......... .......... 11% 1.19M 7m12s\n 61000K .......... .......... .......... .......... .......... 11% 1.18M 7m12s\n 61050K .......... .......... .......... .......... .......... 11% 1.19M 7m12s\n 61100K .......... .......... .......... .......... .......... 11% 1.19M 7m12s\n 61150K .......... .......... .......... .......... .......... 11% 919K 7m12s\n 61200K .......... .......... .......... .......... .......... 11% 1.19M 7m12s\n 61250K .......... .......... .......... .......... .......... 11% 1.19M 7m12s\n 61300K .......... .......... .......... .......... .......... 11% 1.18M 7m12s\n 61350K .......... .......... .......... .......... .......... 11% 1.20M 7m12s\n 61400K .......... .......... .......... .......... .......... 11% 1.16M 7m12s\n 61450K .......... .......... .......... .......... .......... 11% 1.21M 7m12s\n 61500K .......... .......... .......... .......... .......... 11% 1.21M 7m12s\n 61550K .......... .......... .......... .......... .......... 11% 884K 7m12s\n 61600K .......... .......... .......... .......... .......... 11% 1.18M 7m11s\n 61650K .......... .......... .......... .......... .......... 11% 1.17M 7m11s\n 61700K .......... .......... .......... .......... .......... 11% 1.14M 7m11s\n 61750K .......... .......... .......... .......... .......... 11% 1.26M 7m11s\n 61800K .......... .......... .......... .......... .......... 11% 1.18M 7m11s\n 61850K .......... .......... .......... .......... .......... 11% 1.19M 7m11s\n 61900K .......... .......... .......... .......... .......... 11% 1.20M 7m11s\n 61950K .......... .......... .......... .......... .......... 11% 917K 7m11s\n 62000K .......... .......... .......... .......... .......... 11% 1.20M 7m11s\n 62050K .......... .......... .......... .......... .......... 11% 1.18M 7m11s\n 62100K .......... .......... .......... .......... .......... 11% 1.18M 7m11s\n 62150K .......... .......... .......... .......... .......... 11% 1.17M 7m11s\n 62200K .......... .......... .......... .......... .......... 11% 1.20M 7m11s\n 62250K .......... .......... .......... .......... .......... 11% 1.19M 7m10s\n 62300K .......... .......... .......... .......... .......... 11% 1.18M 7m10s\n 62350K .......... .......... .......... .......... .......... 11% 920K 7m10s\n 62400K .......... .......... .......... .......... .......... 11% 1.20M 7m10s\n 62450K .......... .......... .......... .......... .......... 11% 1.17M 7m10s\n 62500K .......... .......... .......... .......... .......... 11% 1.18M 7m10s\n 62550K .......... .......... .......... .......... .......... 11% 1.20M 7m10s\n 62600K .......... .......... .......... .......... .......... 11% 1.20M 7m10s\n 62650K .......... .......... .......... .......... .......... 11% 1.19M 7m10s\n 62700K .......... .......... .......... .......... .......... 11% 1.19M 7m10s\n 62750K .......... .......... .......... .......... .......... 11% 899K 7m10s\n 62800K .......... .......... .......... .......... .......... 11% 1.18M 7m10s\n 62850K .......... .......... .......... .......... .......... 11% 1.19M 7m10s\n 62900K .......... .......... .......... .......... .......... 11% 1.16M 7m10s\n 62950K .......... .......... .......... .......... .......... 11% 1.20M 7m10s\n 63000K .......... .......... .......... .......... .......... 11% 1.11M 7m10s\n 63050K .......... .......... .......... .......... .......... 11% 1.23M 7m9s\n 63100K .......... .......... .......... .......... .......... 11% 1.15M 7m9s\n 63150K .......... .......... .......... .......... .......... 11% 946K 7m9s\n 63200K .......... .......... .......... .......... .......... 11% 1.18M 7m9s\n 63250K .......... .......... .......... .......... .......... 11% 1.20M 7m9s\n 63300K .......... .......... .......... .......... .......... 11% 1.17M 7m9s\n 63350K .......... .......... .......... .......... .......... 11% 1.19M 7m9s\n 63400K .......... .......... .......... .......... .......... 11% 1.15M 7m9s\n 63450K .......... .......... .......... .......... .......... 11% 1.27M 7m9s\n 63500K .......... .......... .......... .......... .......... 11% 1.16M 7m9s\n 63550K .......... .......... .......... .......... .......... 11% 886K 7m9s\n 63600K .......... .......... .......... .......... .......... 11% 1.23M 7m9s\n 63650K .......... .......... .......... .......... .......... 11% 1.17M 7m9s\n 63700K .......... .......... .......... .......... .......... 11% 1.22M 7m9s\n 63750K .......... .......... .......... .......... .......... 11% 1.17M 7m9s\n 63800K .......... .......... .......... .......... .......... 12% 1.15M 7m8s\n 63850K .......... .......... .......... .......... .......... 12% 1.23M 7m8s\n 63900K .......... .......... .......... .......... .......... 12% 1.19M 7m8s\n 63950K .......... .......... .......... .......... .......... 12% 925K 7m8s\n 64000K .......... .......... .......... .......... .......... 12% 1.14M 7m8s\n 64050K .......... .......... .......... .......... .......... 12% 1.21M 7m8s\n 64100K .......... .......... .......... .......... .......... 12% 1.21M 7m8s\n 64150K .......... .......... .......... .......... .......... 12% 1.18M 7m8s\n 64200K .......... .......... .......... .......... .......... 12% 1.14M 7m8s\n 64250K .......... .......... .......... .......... .......... 12% 1.24M 7m8s\n 64300K .......... .......... .......... .......... .......... 12% 1.17M 7m8s\n 64350K .......... .......... .......... .......... .......... 12% 933K 7m8s\n 64400K .......... .......... .......... .......... .......... 12% 1.20M 7m8s\n 64450K .......... .......... .......... .......... .......... 12% 1.16M 7m8s\n 64500K .......... .......... .......... .......... .......... 12% 1.19M 7m8s\n 64550K .......... .......... .......... .......... .......... 12% 1.19M 7m7s\n 64600K .......... .......... .......... .......... .......... 12% 1.20M 7m7s\n 64650K .......... .......... .......... .......... .......... 12% 1.19M 7m7s\n 64700K .......... .......... .......... .......... .......... 12% 1.16M 7m7s\n 64750K .......... .......... .......... .......... .......... 12% 906K 7m7s\n 64800K .......... .......... .......... .......... .......... 12% 1.18M 7m7s\n 64850K .......... .......... .......... .......... .......... 12% 1.19M 7m7s\n 64900K .......... .......... .......... .......... .......... 12% 1.21M 7m7s\n 64950K .......... .......... .......... .......... .......... 12% 1.17M 7m7s\n 65000K .......... .......... .......... .......... .......... 12% 1.18M 7m7s\n 65050K .......... .......... .......... .......... .......... 12% 1.15M 7m7s\n 65100K .......... .......... .......... .......... .......... 12% 1.24M 7m7s\n 65150K .......... .......... .......... .......... .......... 12% 927K 7m7s\n 65200K .......... .......... .......... .......... .......... 12% 1.20M 7m7s\n 65250K .......... .......... .......... .......... .......... 12% 1.16M 7m7s\n 65300K .......... .......... .......... .......... .......... 12% 1.19M 7m6s\n 65350K .......... .......... .......... .......... .......... 12% 1.20M 7m6s\n 65400K .......... .......... .......... .......... .......... 12% 1.18M 7m6s\n 65450K .......... .......... .......... .......... .......... 12% 1.19M 7m6s\n 65500K .......... .......... .......... .......... .......... 12% 1.20M 7m6s\n 65550K .......... .......... .......... .......... .......... 12% 917K 7m6s\n 65600K .......... .......... .......... .......... .......... 12% 1.18M 7m6s\n 65650K .......... .......... .......... .......... .......... 12% 1.17M 7m6s\n 65700K .......... .......... .......... .......... .......... 12% 1.21M 7m6s\n 65750K .......... .......... .......... .......... .......... 12% 1.12M 7m6s\n 65800K .......... .......... .......... .......... .......... 12% 1.27M 7m6s\n 65850K .......... .......... .......... .......... .......... 12% 1.17M 7m6s\n 65900K .......... .......... .......... .......... .......... 12% 1.19M 7m6s\n 65950K .......... .......... .......... .......... .......... 12% 865K 7m6s\n 66000K .......... .......... .......... .......... .......... 12% 1.19M 7m6s\n 66050K .......... .......... .......... .......... .......... 12% 1.24M 7m5s\n 66100K .......... .......... .......... .......... .......... 12% 1.19M 7m5s\n 66150K .......... .......... .......... .......... .......... 12% 1.17M 7m5s\n 66200K .......... .......... .......... .......... .......... 12% 1.22M 7m5s\n 66250K .......... .......... .......... .......... .......... 12% 1.20M 7m5s\n 66300K .......... .......... .......... .......... .......... 12% 1.19M 7m5s\n 66350K .......... .......... .......... .......... .......... 12% 894K 7m5s\n 66400K .......... .......... .......... .......... .......... 12% 1.21M 7m5s\n 66450K .......... .......... .......... .......... .......... 12% 1.16M 7m5s\n 66500K .......... .......... .......... .......... .......... 12% 1.21M 7m5s\n 66550K .......... .......... .......... .......... .......... 12% 1.19M 7m5s\n 66600K .......... .......... .......... .......... .......... 12% 1.17M 7m5s\n 66650K .......... .......... .......... .......... .......... 12% 1.22M 7m5s\n 66700K .......... .......... .......... .......... .......... 12% 1.14M 7m5s\n 66750K .......... .......... .......... .......... .......... 12% 926K 7m5s\n 66800K .......... .......... .......... .......... .......... 12% 1.18M 7m4s\n 66850K .......... .......... .......... .......... .......... 12% 1.19M 7m4s\n 66900K .......... .......... .......... .......... .......... 12% 1.20M 7m4s\n 66950K .......... .......... .......... .......... .......... 12% 1.16M 7m4s\n 67000K .......... .......... .......... .......... .......... 12% 1.18M 7m4s\n 67050K .......... .......... .......... .......... .......... 12% 1.20M 7m4s\n 67100K .......... .......... .......... .......... .......... 12% 1.19M 7m4s\n 67150K .......... .......... .......... .......... .......... 12% 203K 7m5s\n 67200K .......... .......... .......... .......... .......... 12% 120M 7m5s\n 67250K .......... .......... .......... .......... .......... 12% 139M 7m5s\n 67300K .......... .......... .......... .......... .......... 12% 1.52M 7m5s\n 67350K .......... .......... .......... .......... .......... 12% 1.17M 7m4s\n 67400K .......... .......... .......... .......... .......... 12% 1.15M 7m4s\n 67450K .......... .......... .......... .......... .......... 12% 1.23M 7m4s\n 67500K .......... .......... .......... .......... .......... 12% 1.17M 7m4s\n 67550K .......... .......... .......... .......... .......... 12% 902K 7m4s\n 67600K .......... .......... .......... .......... .......... 12% 1.23M 7m4s\n 67650K .......... .......... .......... .......... .......... 12% 1.15M 7m4s\n 67700K .......... .......... .......... .......... .......... 12% 1.23M 7m4s\n 67750K .......... .......... .......... .......... .......... 12% 1.16M 7m4s\n 67800K .......... .......... .......... .......... .......... 12% 1.15M 7m4s\n 67850K .......... .......... .......... .......... .......... 12% 1.24M 7m4s\n 67900K .......... .......... .......... .......... .......... 12% 1.17M 7m4s\n 67950K .......... .......... .......... .......... .......... 12% 205K 7m5s\n 68000K .......... .......... .......... .......... .......... 12% 159M 7m5s\n 68050K .......... .......... .......... .......... .......... 12% 110M 7m4s\n 68100K .......... .......... .......... .......... .......... 12% 1.51M 7m4s\n 68150K .......... .......... .......... .......... .......... 12% 1.17M 7m4s\n 68200K .......... .......... .......... .......... .......... 12% 1.22M 7m4s\n 68250K .......... .......... .......... .......... .......... 12% 247K 7m5s\n 68300K .......... .......... .......... .......... .......... 12% 81.4M 7m5s\n 68350K .......... .......... .......... .......... .......... 12% 125M 7m4s\n 68400K .......... .......... .......... .......... .......... 12% 106M 7m4s\n 68450K .......... .......... .......... .......... .......... 12% 983K 7m4s\n 68500K .......... .......... .......... .......... .......... 12% 1.19M 7m4s\n 68550K .......... .......... .......... .......... .......... 12% 1.18M 7m4s\n 68600K .......... .......... .......... .......... .......... 12% 1.18M 7m4s\n 68650K .......... .......... .......... .......... .......... 12% 1.20M 7m4s\n 68700K .......... .......... .......... .......... .......... 12% 1.20M 7m4s\n 68750K .......... .......... .......... .......... .......... 12% 917K 7m4s\n 68800K .......... .......... .......... .......... .......... 12% 1.20M 7m4s\n 68850K .......... .......... .......... .......... .......... 12% 1.15M 7m3s\n 68900K .......... .......... .......... .......... .......... 12% 1.22M 7m3s\n 68950K .......... .......... .......... .......... .......... 12% 1016K 7m3s\n 69000K .......... .......... .......... .......... .......... 12% 1.46M 7m3s\n 69050K .......... .......... .......... .......... .......... 12% 1.18M 7m3s\n 69100K .......... .......... .......... .......... .......... 13% 1.22M 7m3s\n 69150K .......... .......... .......... .......... .......... 13% 891K 7m3s\n 69200K .......... .......... .......... .......... .......... 13% 1.19M 7m3s\n 69250K .......... .......... .......... .......... .......... 13% 1.16M 7m3s\n 69300K .......... .......... .......... .......... .......... 13% 1.08M 7m3s\n 69350K .......... .......... .......... .......... .......... 13% 1.27M 7m3s\n 69400K .......... .......... .......... .......... .......... 13% 1.16M 7m3s\n 69450K .......... .......... .......... .......... .......... 13% 1.24M 7m3s\n 69500K .......... .......... .......... .......... .......... 13% 1.16M 7m3s\n 69550K .......... .......... .......... .......... .......... 13% 926K 7m3s\n 69600K .......... .......... .......... .......... .......... 13% 1.21M 7m2s\n 69650K .......... .......... .......... .......... .......... 13% 1.18M 7m2s\n 69700K .......... .......... .......... .......... .......... 13% 1.20M 7m2s\n 69750K .......... .......... .......... .......... .......... 13% 1.20M 7m2s\n 69800K .......... .......... .......... .......... .......... 13% 1.19M 7m2s\n 69850K .......... .......... .......... .......... .......... 13% 1.20M 7m2s\n 69900K .......... .......... .......... .......... .......... 13% 1.16M 7m2s\n 69950K .......... .......... .......... .......... .......... 13% 842K 7m2s\n 70000K .......... .......... .......... .......... .......... 13% 1.33M 7m2s\n 70050K .......... .......... .......... .......... .......... 13% 1.17M 7m2s\n 70100K .......... .......... .......... .......... .......... 13% 1.20M 7m2s\n 70150K .......... .......... .......... .......... .......... 13% 1.14M 7m2s\n 70200K .......... .......... .......... .......... .......... 13% 1.22M 7m2s\n 70250K .......... .......... .......... .......... .......... 13% 1.20M 7m2s\n 70300K .......... .......... .......... .......... .......... 13% 1016K 7m2s\n 70350K .......... .......... .......... .......... .......... 13% 1.05M 7m2s\n 70400K .......... .......... .......... .......... .......... 13% 1.20M 7m1s\n 70450K .......... .......... .......... .......... .......... 13% 1.18M 7m1s\n 70500K .......... .......... .......... .......... .......... 13% 1.18M 7m1s\n 70550K .......... .......... .......... .......... .......... 13% 1.18M 7m1s\n 70600K .......... .......... .......... .......... .......... 13% 1.21M 7m1s\n 70650K .......... .......... .......... .......... .......... 13% 1.18M 7m1s\n 70700K .......... .......... .......... .......... .......... 13% 1.16M 7m1s\n 70750K .......... .......... .......... .......... .......... 13% 219K 7m2s\n 70800K .......... .......... .......... .......... .......... 13% 68.0M 7m2s\n 70850K .......... .......... .......... .......... .......... 13% 1.48M 7m2s\n 70900K .......... .......... .......... .......... .......... 13% 190M 7m1s\n 70950K .......... .......... .......... .......... .......... 13% 877K 7m1s\n 71000K .......... .......... .......... .......... .......... 13% 1.17M 7m1s\n 71050K .......... .......... .......... .......... .......... 13% 1.17M 7m1s\n 71100K .......... .......... .......... .......... .......... 13% 1.22M 7m1s\n 71150K .......... .......... .......... .......... .......... 13% 893K 7m1s\n 71200K .......... .......... .......... .......... .......... 13% 1.20M 7m1s\n 71250K .......... .......... .......... .......... .......... 13% 1.19M 7m1s\n 71300K .......... .......... .......... .......... .......... 13% 1.17M 7m1s\n 71350K .......... .......... .......... .......... .......... 13% 1.19M 7m1s\n 71400K .......... .......... .......... .......... .......... 13% 1.20M 7m1s\n 71450K .......... .......... .......... .......... .......... 13% 1.12M 7m1s\n 71500K .......... .......... .......... .......... .......... 13% 1.25M 7m1s\n 71550K .......... .......... .......... .......... .......... 13% 903K 7m1s\n 71600K .......... .......... .......... .......... .......... 13% 240K 7m2s\n 71650K .......... .......... .......... .......... .......... 13% 18.4M 7m1s\n 71700K .......... .......... .......... .......... .......... 13% 22.2M 7m1s\n 71750K .......... .......... .......... .......... .......... 13% 20.5M 7m1s\n 71800K .......... .......... .......... .......... .......... 13% 7.82M 7m0s\n 71850K .......... .......... .......... .......... .......... 13% 830K 7m0s\n 71900K .......... .......... .......... .......... .......... 13% 1.21M 7m0s\n 71950K .......... .......... .......... .......... .......... 13% 910K 7m0s\n 72000K .......... .......... .......... .......... .......... 13% 1.20M 7m0s\n 72050K .......... .......... .......... .......... .......... 13% 1.17M 7m0s\n 72100K .......... .......... .......... .......... .......... 13% 1.20M 7m0s\n 72150K .......... .......... .......... .......... .......... 13% 1.22M 7m0s\n 72200K .......... .......... .......... .......... .......... 13% 1.15M 7m0s\n 72250K .......... .......... .......... .......... .......... 13% 1.17M 7m0s\n 72300K .......... .......... .......... .......... .......... 13% 1.04M 7m0s\n 72350K .......... .......... .......... .......... .......... 13% 1.00M 7m0s\n 72400K .......... .......... .......... .......... .......... 13% 1.17M 7m0s\n 72450K .......... .......... .......... .......... .......... 13% 1.20M 7m0s\n 72500K .......... .......... .......... .......... .......... 13% 1.21M 7m0s\n 72550K .......... .......... .......... .......... .......... 13% 1.20M 7m0s\n 72600K .......... .......... .......... .......... .......... 13% 1.17M 6m59s\n 72650K .......... .......... .......... .......... .......... 13% 1.21M 6m59s\n 72700K .......... .......... .......... .......... .......... 13% 1.16M 6m59s\n 72750K .......... .......... .......... .......... .......... 13% 927K 6m59s\n 72800K .......... .......... .......... .......... .......... 13% 1.18M 6m59s\n 72850K .......... .......... .......... .......... .......... 13% 1.16M 6m59s\n 72900K .......... .......... .......... .......... .......... 13% 1.22M 6m59s\n 72950K .......... .......... .......... .......... .......... 13% 1.18M 6m59s\n 73000K .......... .......... .......... .......... .......... 13% 1.18M 6m59s\n 73050K .......... .......... .......... .......... .......... 13% 1.19M 6m59s\n 73100K .......... .......... .......... .......... .......... 13% 1.04M 6m59s\n 73150K .......... .......... .......... .......... .......... 13% 1.02M 6m59s\n 73200K .......... .......... .......... .......... .......... 13% 1.18M 6m59s\n 73250K .......... .......... .......... .......... .......... 13% 1.15M 6m59s\n 73300K .......... .......... .......... .......... .......... 13% 1.18M 6m59s\n 73350K .......... .......... .......... .......... .......... 13% 1.20M 6m59s\n 73400K .......... .......... .......... .......... .......... 13% 1.19M 6m58s\n 73450K .......... .......... .......... .......... .......... 13% 1.18M 6m58s\n 73500K .......... .......... .......... .......... .......... 13% 1.20M 6m58s\n 73550K .......... .......... .......... .......... .......... 13% 905K 6m58s\n 73600K .......... .......... .......... .......... .......... 13% 1.18M 6m58s\n 73650K .......... .......... .......... .......... .......... 13% 1.16M 6m58s\n 73700K .......... .......... .......... .......... .......... 13% 1.20M 6m58s\n 73750K .......... .......... .......... .......... .......... 13% 1.22M 6m58s\n 73800K .......... .......... .......... .......... .......... 13% 1.18M 6m58s\n 73850K .......... .......... .......... .......... .......... 13% 1.19M 6m58s\n 73900K .......... .......... .......... .......... .......... 13% 1.17M 6m58s\n 73950K .......... .......... .......... .......... .......... 13% 924K 6m58s\n 74000K .......... .......... .......... .......... .......... 13% 1.19M 6m58s\n 74050K .......... .......... .......... .......... .......... 13% 1.16M 6m58s\n 74100K .......... .......... .......... .......... .......... 13% 257K 6m59s\n 74150K .......... .......... .......... .......... .......... 13% 122M 6m58s\n 74200K .......... .......... .......... .......... .......... 13% 55.6M 6m58s\n 74250K .......... .......... .......... .......... .......... 13% 40.6M 6m58s\n 74300K .......... .......... .......... .......... .......... 13% 1.17M 6m58s\n 74350K .......... .......... .......... .......... .......... 13% 913K 6m58s\n 74400K .......... .......... .......... .......... .......... 13% 1.19M 6m57s\n 74450K .......... .......... .......... .......... .......... 14% 1.18M 6m57s\n 74500K .......... .......... .......... .......... .......... 14% 1.18M 6m57s\n 74550K .......... .......... .......... .......... .......... 14% 1.19M 6m57s\n 74600K .......... .......... .......... .......... .......... 14% 1.19M 6m57s\n 74650K .......... .......... .......... .......... .......... 14% 1.19M 6m57s\n 74700K .......... .......... .......... .......... .......... 14% 1.19M 6m57s\n 74750K .......... .......... .......... .......... .......... 14% 928K 6m57s\n 74800K .......... .......... .......... .......... .......... 14% 1.18M 6m57s\n 74850K .......... .......... .......... .......... .......... 14% 1.18M 6m57s\n 74900K .......... .......... .......... .......... .......... 14% 1.18M 6m57s\n 74950K .......... .......... .......... .......... .......... 14% 1.20M 6m57s\n 75000K .......... .......... .......... .......... .......... 14% 1.20M 6m57s\n 75050K .......... .......... .......... .......... .......... 14% 1.18M 6m57s\n 75100K .......... .......... .......... .......... .......... 14% 1.19M 6m57s\n 75150K .......... .......... .......... .......... .......... 14% 908K 6m57s\n 75200K .......... .......... .......... .......... .......... 14% 1.16M 6m56s\n 75250K .......... .......... .......... .......... .......... 14% 1.21M 6m56s\n 75300K .......... .......... .......... .......... .......... 14% 1.20M 6m56s\n 75350K .......... .......... .......... .......... .......... 14% 1.20M 6m56s\n 75400K .......... .......... .......... .......... .......... 14% 1.20M 6m56s\n 75450K .......... .......... .......... .......... .......... 14% 1.11M 6m56s\n 75500K .......... .......... .......... .......... .......... 14% 1.28M 6m56s\n 75550K .......... .......... .......... .......... .......... 14% 899K 6m56s\n 75600K .......... .......... .......... .......... .......... 14% 1.14M 6m56s\n 75650K .......... .......... .......... .......... .......... 14% 1.23M 6m56s\n 75700K .......... .......... .......... .......... .......... 14% 1.20M 6m56s\n 75750K .......... .......... .......... .......... .......... 14% 1.19M 6m56s\n 75800K .......... .......... .......... .......... .......... 14% 1.18M 6m56s\n 75850K .......... .......... .......... .......... .......... 14% 1.19M 6m56s\n 75900K .......... .......... .......... .......... .......... 14% 1.19M 6m56s\n 75950K .......... .......... .......... .......... .......... 14% 913K 6m56s\n 76000K .......... .......... .......... .......... .......... 14% 1.19M 6m55s\n 76050K .......... .......... .......... .......... .......... 14% 1.18M 6m55s\n 76100K .......... .......... .......... .......... .......... 14% 1.20M 6m55s\n 76150K .......... .......... .......... .......... .......... 14% 1.16M 6m55s\n 76200K .......... .......... .......... .......... .......... 14% 1.19M 6m55s\n 76250K .......... .......... .......... .......... .......... 14% 1.19M 6m55s\n 76300K .......... .......... .......... .......... .......... 14% 1.17M 6m55s\n 76350K .......... .......... .......... .......... .......... 14% 934K 6m55s\n 76400K .......... .......... .......... .......... .......... 14% 1.19M 6m55s\n 76450K .......... .......... .......... .......... .......... 14% 1.18M 6m55s\n 76500K .......... .......... .......... .......... .......... 14% 1.18M 6m55s\n 76550K .......... .......... .......... .......... .......... 14% 1.15M 6m55s\n 76600K .......... .......... .......... .......... .......... 14% 1.20M 6m55s\n 76650K .......... .......... .......... .......... .......... 14% 1.18M 6m55s\n 76700K .......... .......... .......... .......... .......... 14% 1.20M 6m55s\n 76750K .......... .......... .......... .......... .......... 14% 890K 6m55s\n 76800K .......... .......... .......... .......... .......... 14% 1.23M 6m54s\n 76850K .......... .......... .......... .......... .......... 14% 1.16M 6m54s\n 76900K .......... .......... .......... .......... .......... 14% 32.0K 7m3s\n 76950K .......... .......... .......... .......... .......... 14% 1.12M 7m3s\n 77000K .......... .......... .......... .......... .......... 14% 1.24M 7m3s\n 77050K .......... .......... .......... .......... .......... 14% 1.19M 7m3s\n 77100K .......... .......... .......... .......... .......... 14% 1.17M 7m3s\n 77150K .......... .......... .......... .......... .......... 14% 945K 7m3s\n 77200K .......... .......... .......... .......... .......... 14% 1.17M 7m3s\n 77250K .......... .......... .......... .......... .......... 14% 1.17M 7m3s\n 77300K .......... .......... .......... .......... .......... 14% 1.21M 7m3s\n 77350K .......... .......... .......... .......... .......... 14% 1.19M 7m3s\n 77400K .......... .......... .......... .......... .......... 14% 1.20M 7m3s\n 77450K .......... .......... .......... .......... .......... 14% 1.19M 7m3s\n 77500K .......... .......... .......... .......... .......... 14% 1.15M 7m2s\n 77550K .......... .......... .......... .......... .......... 14% 924K 7m2s\n 77600K .......... .......... .......... .......... .......... 14% 1.18M 7m2s\n 77650K .......... .......... .......... .......... .......... 14% 1.20M 7m2s\n 77700K .......... .......... .......... .......... .......... 14% 1.19M 7m2s\n 77750K .......... .......... .......... .......... .......... 14% 1.20M 7m2s\n 77800K .......... .......... .......... .......... .......... 14% 1.19M 7m2s\n 77850K .......... .......... .......... .......... .......... 14% 1.20M 7m2s\n 77900K .......... .......... .......... .......... .......... 14% 1.19M 7m2s\n 77950K .......... .......... .......... .......... .......... 14% 891K 7m2s\n 78000K .......... .......... .......... .......... .......... 14% 1.18M 7m2s\n 78050K .......... .......... .......... .......... .......... 14% 1.20M 7m2s\n 78100K .......... .......... .......... .......... .......... 14% 1.18M 7m2s\n 78150K .......... .......... .......... .......... .......... 14% 1.20M 7m2s\n 78200K .......... .......... .......... .......... .......... 14% 1.17M 7m2s\n 78250K .......... .......... .......... .......... .......... 14% 1.19M 7m1s\n 78300K .......... .......... .......... .......... .......... 14% 1.19M 7m1s\n 78350K .......... .......... .......... .......... .......... 14% 939K 7m1s\n 78400K .......... .......... .......... .......... .......... 14% 1.19M 7m1s\n 78450K .......... .......... .......... .......... .......... 14% 1.12M 7m1s\n 78500K .......... .......... .......... .......... .......... 14% 1.23M 7m1s\n 78550K .......... .......... .......... .......... .......... 14% 1.16M 7m1s\n 78600K .......... .......... .......... .......... .......... 14% 1.21M 7m1s\n 78650K .......... .......... .......... .......... .......... 14% 1.18M 7m1s\n 78700K .......... .......... .......... .......... .......... 14% 1.20M 7m1s\n 78750K .......... .......... .......... .......... .......... 14% 929K 7m1s\n 78800K .......... .......... .......... .......... .......... 14% 1.17M 7m1s\n 78850K .......... .......... .......... .......... .......... 14% 1.20M 7m1s\n 78900K .......... .......... .......... .......... .......... 14% 1.17M 7m1s\n 78950K .......... .......... .......... .......... .......... 14% 1.20M 7m1s\n 79000K .......... .......... .......... .......... .......... 14% 1.19M 7m0s\n 79050K .......... .......... .......... .......... .......... 14% 1.20M 7m0s\n 79100K .......... .......... .......... .......... .......... 14% 1.13M 7m0s\n 79150K .......... .......... .......... .......... .......... 14% 887K 7m0s\n 79200K .......... .......... .......... .......... .......... 14% 1.27M 7m0s\n 79250K .......... .......... .......... .......... .......... 14% 1.16M 7m0s\n 79300K .......... .......... .......... .......... .......... 14% 1.21M 7m0s\n 79350K .......... .......... .......... .......... .......... 14% 1.17M 7m0s\n 79400K .......... .......... .......... .......... .......... 14% 1.18M 7m0s\n 79450K .......... .......... .......... .......... .......... 14% 222K 7m1s\n 79500K .......... .......... .......... .......... .......... 14% 104M 7m1s\n 79550K .......... .......... .......... .......... .......... 14% 41.8M 7m0s\n 79600K .......... .......... .......... .......... .......... 14% 95.3M 7m0s\n 79650K .......... .......... .......... .......... .......... 14% 2.73M 7m0s\n 79700K .......... .......... .......... .......... .......... 14% 1.01M 7m0s\n 79750K .......... .......... .......... .......... .......... 15% 1.19M 7m0s\n 79800K .......... .......... .......... .......... .......... 15% 1.19M 7m0s\n 79850K .......... .......... .......... .......... .......... 15% 1.17M 6m59s\n 79900K .......... .......... .......... .......... .......... 15% 1.20M 6m59s\n 79950K .......... .......... .......... .......... .......... 15% 911K 6m59s\n 80000K .......... .......... .......... .......... .......... 15% 1.20M 6m59s\n 80050K .......... .......... .......... .......... .......... 15% 1.17M 6m59s\n 80100K .......... .......... .......... .......... .......... 15% 1.21M 6m59s\n 80150K .......... .......... .......... .......... .......... 15% 1.19M 6m59s\n 80200K .......... .......... .......... .......... .......... 15% 1.17M 6m59s\n 80250K .......... .......... .......... .......... .......... 15% 1.21M 6m59s\n 80300K .......... .......... .......... .......... .......... 15% 1.15M 6m59s\n 80350K .......... .......... .......... .......... .......... 15% 918K 6m59s\n 80400K .......... .......... .......... .......... .......... 15% 1.20M 6m59s\n 80450K .......... .......... .......... .......... .......... 15% 1.19M 6m59s\n 80500K .......... .......... .......... .......... .......... 15% 1.14M 6m59s\n 80550K .......... .......... .......... .......... .......... 15% 1.20M 6m59s\n 80600K .......... .......... .......... .......... .......... 15% 1.20M 6m59s\n 80650K .......... .......... .......... .......... .......... 15% 1.19M 6m58s\n 80700K .......... .......... .......... .......... .......... 15% 1.19M 6m58s\n 80750K .......... .......... .......... .......... .......... 15% 926K 6m58s\n 80800K .......... .......... .......... .......... .......... 15% 1.17M 6m58s\n 80850K .......... .......... .......... .......... .......... 15% 1.20M 6m58s\n 80900K .......... .......... .......... .......... .......... 15% 1.18M 6m58s\n 80950K .......... .......... .......... .......... .......... 15% 1.20M 6m58s\n 81000K .......... .......... .......... .......... .......... 15% 1.18M 6m58s\n 81050K .......... .......... .......... .......... .......... 15% 1.18M 6m58s\n 81100K .......... .......... .......... .......... .......... 15% 1.21M 6m58s\n 81150K .......... .......... .......... .......... .......... 15% 877K 6m58s\n 81200K .......... .......... .......... .......... .......... 15% 1.22M 6m58s\n 81250K .......... .......... .......... .......... .......... 15% 1.20M 6m58s\n 81300K .......... .......... .......... .......... .......... 15% 1.19M 6m58s\n 81350K .......... .......... .......... .......... .......... 15% 1.19M 6m58s\n 81400K .......... .......... .......... .......... .......... 15% 1.17M 6m57s\n 81450K .......... .......... .......... .......... .......... 15% 1.22M 6m57s\n 81500K .......... .......... .......... .......... .......... 15% 1.19M 6m57s\n 81550K .......... .......... .......... .......... .......... 15% 905K 6m57s\n 81600K .......... .......... .......... .......... .......... 15% 1.18M 6m57s\n 81650K .......... .......... .......... .......... .......... 15% 1.20M 6m57s\n 81700K .......... .......... .......... .......... .......... 15% 1.18M 6m57s\n 81750K .......... .......... .......... .......... .......... 15% 1.17M 6m57s\n 81800K .......... .......... .......... .......... .......... 15% 1.21M 6m57s\n 81850K .......... .......... .......... .......... .......... 15% 1.19M 6m57s\n 81900K .......... .......... .......... .......... .......... 15% 1.16M 6m57s\n 81950K .......... .......... .......... .......... .......... 15% 927K 6m57s\n 82000K .......... .......... .......... .......... .......... 15% 217K 6m58s\n 82050K .......... .......... .......... .......... .......... 15% 159M 6m57s\n 82100K .......... .......... .......... .......... .......... 15% 175M 6m57s\n 82150K .......... .......... .......... .......... .......... 15% 98.3M 6m57s\n 82200K .......... .......... .......... .......... .......... 15% 1.18M 6m57s\n 82250K .......... .......... .......... .......... .......... 15% 1.21M 6m57s\n 82300K .......... .......... .......... .......... .......... 15% 1.17M 6m57s\n 82350K .......... .......... .......... .......... .......... 15% 892K 6m57s\n 82400K .......... .......... .......... .......... .......... 15% 1.20M 6m57s\n 82450K .......... .......... .......... .......... .......... 15% 1.16M 6m56s\n 82500K .......... .......... .......... .......... .......... 15% 1.23M 6m56s\n 82550K .......... .......... .......... .......... .......... 15% 1.19M 6m56s\n 82600K .......... .......... .......... .......... .......... 15% 1.17M 6m56s\n 82650K .......... .......... .......... .......... .......... 15% 1.19M 6m56s\n 82700K .......... .......... .......... .......... .......... 15% 1.21M 6m56s\n 82750K .......... .......... .......... .......... .......... 15% 913K 6m56s\n 82800K .......... .......... .......... .......... .......... 15% 1.17M 6m56s\n 82850K .......... .......... .......... .......... .......... 15% 264K 6m57s\n 82900K .......... .......... .......... .......... .......... 15% 21.9M 6m56s\n 82950K .......... .......... .......... .......... .......... 15% 14.2M 6m56s\n 83000K .......... .......... .......... .......... .......... 15% 11.2M 6m56s\n 83050K .......... .......... .......... .......... .......... 15% 1.25M 6m56s\n 83100K .......... .......... .......... .......... .......... 15% 1.19M 6m56s\n 83150K .......... .......... .......... .......... .......... 15% 902K 6m56s\n 83200K .......... .......... .......... .......... .......... 15% 1.21M 6m56s\n 83250K .......... .......... .......... .......... .......... 15% 1.19M 6m56s\n 83300K .......... .......... .......... .......... .......... 15% 1.18M 6m56s\n 83350K .......... .......... .......... .......... .......... 15% 1.19M 6m55s\n 83400K .......... .......... .......... .......... .......... 15% 1.20M 6m55s\n 83450K .......... .......... .......... .......... .......... 15% 1.17M 6m55s\n 83500K .......... .......... .......... .......... .......... 15% 1.20M 6m55s\n 83550K .......... .......... .......... .......... .......... 15% 902K 6m55s\n 83600K .......... .......... .......... .......... .......... 15% 1.18M 6m55s\n 83650K .......... .......... .......... .......... .......... 15% 1.17M 6m55s\n 83700K .......... .......... .......... .......... .......... 15% 1.18M 6m55s\n 83750K .......... .......... .......... .......... .......... 15% 1.21M 6m55s\n 83800K .......... .......... .......... .......... .......... 15% 1.17M 6m55s\n 83850K .......... .......... .......... .......... .......... 15% 1.20M 6m55s\n 83900K .......... .......... .......... .......... .......... 15% 1.16M 6m55s\n 83950K .......... .......... .......... .......... .......... 15% 887K 6m55s\n 84000K .......... .......... .......... .......... .......... 15% 1.21M 6m55s\n 84050K .......... .......... .......... .......... .......... 15% 1.19M 6m55s\n 84100K .......... .......... .......... .......... .......... 15% 1.17M 6m55s\n 84150K .......... .......... .......... .......... .......... 15% 1.15M 6m54s\n 84200K .......... .......... .......... .......... .......... 15% 1.22M 6m54s\n 84250K .......... .......... .......... .......... .......... 15% 1.16M 6m54s\n 84300K .......... .......... .......... .......... .......... 15% 1.22M 6m54s\n 84350K .......... .......... .......... .......... .......... 15% 918K 6m54s\n 84400K .......... .......... .......... .......... .......... 15% 1.17M 6m54s\n 84450K .......... .......... .......... .......... .......... 15% 1.17M 6m54s\n 84500K .......... .......... .......... .......... .......... 15% 1.20M 6m54s\n 84550K .......... .......... .......... .......... .......... 15% 1.19M 6m54s\n 84600K .......... .......... .......... .......... .......... 15% 1.19M 6m54s\n 84650K .......... .......... .......... .......... .......... 15% 1.19M 6m54s\n 84700K .......... .......... .......... .......... .......... 15% 1.17M 6m54s\n 84750K .......... .......... .......... .......... .......... 15% 919K 6m54s\n 84800K .......... .......... .......... .......... .......... 15% 1.20M 6m54s\n 84850K .......... .......... .......... .......... .......... 15% 1.18M 6m54s\n 84900K .......... .......... .......... .......... .......... 15% 1.20M 6m53s\n 84950K .......... .......... .......... .......... .......... 15% 1.14M 6m53s\n 85000K .......... .......... .......... .......... .......... 15% 1.20M 6m53s\n 85050K .......... .......... .......... .......... .......... 16% 1.20M 6m53s\n 85100K .......... .......... .......... .......... .......... 16% 1.08M 6m53s\n 85150K .......... .......... .......... .......... .......... 16% 997K 6m53s\n 85200K .......... .......... .......... .......... .......... 16% 1.19M 6m53s\n 85250K .......... .......... .......... .......... .......... 16% 1.21M 6m53s\n 85300K .......... .......... .......... .......... .......... 16% 232K 6m54s\n 85350K .......... .......... .......... .......... .......... 16% 9.38M 6m54s\n 85400K .......... .......... .......... .......... .......... 16% 44.6M 6m53s\n 85450K .......... .......... .......... .......... .......... 16% 141M 6m53s\n 85500K .......... .......... .......... .......... .......... 16% 142M 6m53s\n 85550K .......... .......... .......... .......... .......... 16% 629K 6m53s\n 85600K .......... .......... .......... .......... .......... 16% 1.22M 6m53s\n 85650K .......... .......... .......... .......... .......... 16% 1.16M 6m53s\n 85700K .......... .......... .......... .......... .......... 16% 1.19M 6m53s\n 85750K .......... .......... .......... .......... .......... 16% 1.19M 6m53s\n 85800K .......... .......... .......... .......... .......... 16% 1.19M 6m53s\n 85850K .......... .......... .......... .......... .......... 16% 1.18M 6m52s\n 85900K .......... .......... .......... .......... .......... 16% 1.19M 6m52s\n 85950K .......... .......... .......... .......... .......... 16% 932K 6m52s\n 86000K .......... .......... .......... .......... .......... 16% 1.19M 6m52s\n 86050K .......... .......... .......... .......... .......... 16% 1.19M 6m52s\n 86100K .......... .......... .......... .......... .......... 16% 1.20M 6m52s\n 86150K .......... .......... .......... .......... .......... 16% 1.18M 6m52s\n 86200K .......... .......... .......... .......... .......... 16% 1.17M 6m52s\n 86250K .......... .......... .......... .......... .......... 16% 1.19M 6m52s\n 86300K .......... .......... .......... .......... .......... 16% 1.17M 6m52s\n 86350K .......... .......... .......... .......... .......... 16% 925K 6m52s\n 86400K .......... .......... .......... .......... .......... 16% 1.15M 6m52s\n 86450K .......... .......... .......... .......... .......... 16% 1.24M 6m52s\n 86500K .......... .......... .......... .......... .......... 16% 1.18M 6m52s\n 86550K .......... .......... .......... .......... .......... 16% 1.19M 6m52s\n 86600K .......... .......... .......... .......... .......... 16% 1.16M 6m51s\n 86650K .......... .......... .......... .......... .......... 16% 1.21M 6m51s\n 86700K .......... .......... .......... .......... .......... 16% 1.18M 6m51s\n 86750K .......... .......... .......... .......... .......... 16% 903K 6m51s\n 86800K .......... .......... .......... .......... .......... 16% 1.19M 6m51s\n 86850K .......... .......... .......... .......... .......... 16% 1.18M 6m51s\n 86900K .......... .......... .......... .......... .......... 16% 1.20M 6m51s\n 86950K .......... .......... .......... .......... .......... 16% 1.19M 6m51s\n 87000K .......... .......... .......... .......... .......... 16% 1.19M 6m51s\n 87050K .......... .......... .......... .......... .......... 16% 1.19M 6m51s\n 87100K .......... .......... .......... .......... .......... 16% 1.10M 6m51s\n 87150K .......... .......... .......... .......... .......... 16% 966K 6m51s\n 87200K .......... .......... .......... .......... .......... 16% 1.18M 6m51s\n 87250K .......... .......... .......... .......... .......... 16% 1.20M 6m51s\n 87300K .......... .......... .......... .......... .......... 16% 1.19M 6m51s\n 87350K .......... .......... .......... .......... .......... 16% 1.18M 6m51s\n 87400K .......... .......... .......... .......... .......... 16% 1.22M 6m50s\n 87450K .......... .......... .......... .......... .......... 16% 1.18M 6m50s\n 87500K .......... .......... .......... .......... .......... 16% 1.18M 6m50s\n 87550K .......... .......... .......... .......... .......... 16% 901K 6m50s\n 87600K .......... .......... .......... .......... .......... 16% 1.19M 6m50s\n 87650K .......... .......... .......... .......... .......... 16% 1.19M 6m50s\n 87700K .......... .......... .......... .......... .......... 16% 586K 6m50s\n 87750K .......... .......... .......... .......... .......... 16% 1.20M 6m50s\n 87800K .......... .......... .......... .......... .......... 16% 1.18M 6m50s\n 87850K .......... .......... .......... .......... .......... 16% 1.18M 6m50s\n 87900K .......... .......... .......... .......... .......... 16% 1.21M 6m50s\n 87950K .......... .......... .......... .......... .......... 16% 906K 6m50s\n 88000K .......... .......... .......... .......... .......... 16% 1.19M 6m50s\n 88050K .......... .......... .......... .......... .......... 16% 1.21M 6m50s\n 88100K .......... .......... .......... .......... .......... 16% 1.16M 6m50s\n 88150K .......... .......... .......... .......... .......... 16% 1.19M 6m50s\n 88200K .......... .......... .......... .......... .......... 16% 1.20M 6m50s\n 88250K .......... .......... .......... .......... .......... 16% 1.17M 6m50s\n 88300K .......... .......... .......... .......... .......... 16% 1.18M 6m50s\n 88350K .......... .......... .......... .......... .......... 16% 927K 6m50s\n 88400K .......... .......... .......... .......... .......... 16% 1.22M 6m49s\n 88450K .......... .......... .......... .......... .......... 16% 1.18M 6m49s\n 88500K .......... .......... .......... .......... .......... 16% 1.19M 6m49s\n 88550K .......... .......... .......... .......... .......... 16% 1.17M 6m49s\n 88600K .......... .......... .......... .......... .......... 16% 1.19M 6m49s\n 88650K .......... .......... .......... .......... .......... 16% 1.19M 6m49s\n 88700K .......... .......... .......... .......... .......... 16% 1.13M 6m49s\n 88750K .......... .......... .......... .......... .......... 16% 932K 6m49s\n 88800K .......... .......... .......... .......... .......... 16% 1.19M 6m49s\n 88850K .......... .......... .......... .......... .......... 16% 1.19M 6m49s\n 88900K .......... .......... .......... .......... .......... 16% 1.19M 6m49s\n 88950K .......... .......... .......... .......... .......... 16% 1.17M 6m49s\n 89000K .......... .......... .......... .......... .......... 16% 1.16M 6m49s\n 89050K .......... .......... .......... .......... .......... 16% 1.22M 6m49s\n 89100K .......... .......... .......... .......... .......... 16% 1.18M 6m49s\n 89150K .......... .......... .......... .......... .......... 16% 919K 6m49s\n 89200K .......... .......... .......... .......... .......... 16% 1.21M 6m48s\n 89250K .......... .......... .......... .......... .......... 16% 1.19M 6m48s\n 89300K .......... .......... .......... .......... .......... 16% 1.20M 6m48s\n 89350K .......... .......... .......... .......... .......... 16% 1.18M 6m48s\n 89400K .......... .......... .......... .......... .......... 16% 1.18M 6m48s\n 89450K .......... .......... .......... .......... .......... 16% 1.19M 6m48s\n 89500K .......... .......... .......... .......... .......... 16% 1.19M 6m48s\n 89550K .......... .......... .......... .......... .......... 16% 919K 6m48s\n 89600K .......... .......... .......... .......... .......... 16% 1.19M 6m48s\n 89650K .......... .......... .......... .......... .......... 16% 1.15M 6m48s\n 89700K .......... .......... .......... .......... .......... 16% 1.21M 6m48s\n 89750K .......... .......... .......... .......... .......... 16% 1.20M 6m48s\n 89800K .......... .......... .......... .......... .......... 16% 1.19M 6m48s\n 89850K .......... .......... .......... .......... .......... 16% 1.17M 6m48s\n 89900K .......... .......... .......... .......... .......... 16% 1.18M 6m48s\n 89950K .......... .......... .......... .......... .......... 16% 905K 6m48s\n 90000K .......... .......... .......... .......... .......... 16% 1.20M 6m47s\n 90050K .......... .......... .......... .......... .......... 16% 1.20M 6m47s\n 90100K .......... .......... .......... .......... .......... 16% 1.17M 6m47s\n 90150K .......... .......... .......... .......... .......... 16% 1.20M 6m47s\n 90200K .......... .......... .......... .......... .......... 16% 1.18M 6m47s\n 90250K .......... .......... .......... .......... .......... 16% 1.20M 6m47s\n 90300K .......... .......... .......... .......... .......... 16% 1.17M 6m47s\n 90350K .......... .......... .......... .......... .......... 16% 908K 6m47s\n 90400K .......... .......... .......... .......... .......... 17% 1.20M 6m47s\n 90450K .......... .......... .......... .......... .......... 17% 1.19M 6m47s\n 90500K .......... .......... .......... .......... .......... 17% 1.18M 6m47s\n 90550K .......... .......... .......... .......... .......... 17% 1.19M 6m47s\n 90600K .......... .......... .......... .......... .......... 17% 1.18M 6m47s\n 90650K .......... .......... .......... .......... .......... 17% 1.20M 6m47s\n 90700K .......... .......... .......... .......... .......... 17% 1.19M 6m47s\n 90750K .......... .......... .......... .......... .......... 17% 919K 6m47s\n 90800K .......... .......... .......... .......... .......... 17% 1.18M 6m46s\n 90850K .......... .......... .......... .......... .......... 17% 1.20M 6m46s\n 90900K .......... .......... .......... .......... .......... 17% 1.20M 6m46s\n 90950K .......... .......... .......... .......... .......... 17% 1.18M 6m46s\n 91000K .......... .......... .......... .......... .......... 17% 1.20M 6m46s\n 91050K .......... .......... .......... .......... .......... 17% 439K 6m46s\n 91100K .......... .......... .......... .......... .......... 17% 81.7M 6m46s\n 91150K .......... .......... .......... .......... .......... 17% 2.00M 6m46s\n 91200K .......... .......... .......... .......... .......... 17% 1.18M 6m46s\n 91250K .......... .......... .......... .......... .......... 17% 1.16M 6m46s\n 91300K .......... .......... .......... .......... .......... 17% 233K 6m47s\n 91350K .......... .......... .......... .......... .......... 17% 51.7M 6m46s\n 91400K .......... .......... .......... .......... .......... 17% 13.3M 6m46s\n 91450K .......... .......... .......... .......... .......... 17% 946K 6m46s\n 91500K .......... .......... .......... .......... .......... 17% 158M 6m46s\n 91550K .......... .......... .......... .......... .......... 17% 878K 6m46s\n 91600K .......... .......... .......... .......... .......... 17% 1.23M 6m46s\n 91650K .......... .......... .......... .......... .......... 17% 1.19M 6m46s\n 91700K .......... .......... .......... .......... .......... 17% 1.20M 6m46s\n 91750K .......... .......... .......... .......... .......... 17% 1.15M 6m46s\n 91800K .......... .......... .......... .......... .......... 17% 1.22M 6m46s\n 91850K .......... .......... .......... .......... .......... 17% 1.19M 6m45s\n 91900K .......... .......... .......... .......... .......... 17% 1.15M 6m45s\n 91950K .......... .......... .......... .......... .......... 17% 213K 6m46s\n 92000K .......... .......... .......... .......... .......... 17% 136M 6m46s\n 92050K .......... .......... .......... .......... .......... 17% 181M 6m46s\n 92100K .......... .......... .......... .......... .......... 17% 1.53M 6m46s\n 92150K .......... .......... .......... .......... .......... 17% 936K 6m46s\n 92200K .......... .......... .......... .......... .......... 17% 1.11M 6m46s\n 92250K .......... .......... .......... .......... .......... 17% 1.27M 6m45s\n 92300K .......... .......... .......... .......... .......... 17% 1.17M 6m45s\n 92350K .......... .......... .......... .......... .......... 17% 932K 6m45s\n 92400K .......... .......... .......... .......... .......... 17% 1.20M 6m45s\n 92450K .......... .......... .......... .......... .......... 17% 1.16M 6m45s\n 92500K .......... .......... .......... .......... .......... 17% 1.23M 6m45s\n 92550K .......... .......... .......... .......... .......... 17% 1.18M 6m45s\n 92600K .......... .......... .......... .......... .......... 17% 1.18M 6m45s\n 92650K .......... .......... .......... .......... .......... 17% 1.19M 6m45s\n 92700K .......... .......... .......... .......... .......... 17% 241K 6m46s\n 92750K .......... .......... .......... .......... .......... 17% 33.2M 6m45s\n 92800K .......... .......... .......... .......... .......... 17% 19.9M 6m45s\n 92850K .......... .......... .......... .......... .......... 17% 8.48M 6m45s\n 92900K .......... .......... .......... .......... .......... 17% 1.17M 6m45s\n 92950K .......... .......... .......... .......... .......... 17% 1.18M 6m45s\n 93000K .......... .......... .......... .......... .......... 17% 1.16M 6m45s\n 93050K .......... .......... .......... .......... .......... 17% 1.17M 6m45s\n 93100K .......... .......... .......... .......... .......... 17% 1.21M 6m45s\n 93150K .......... .......... .......... .......... .......... 17% 890K 6m45s\n 93200K .......... .......... .......... .......... .......... 17% 1.20M 6m45s\n 93250K .......... .......... .......... .......... .......... 17% 1.19M 6m44s\n 93300K .......... .......... .......... .......... .......... 17% 1.19M 6m44s\n 93350K .......... .......... .......... .......... .......... 17% 1.16M 6m44s\n 93400K .......... .......... .......... .......... .......... 17% 1.16M 6m44s\n 93450K .......... .......... .......... .......... .......... 17% 1.23M 6m44s\n 93500K .......... .......... .......... .......... .......... 17% 1.19M 6m44s\n 93550K .......... .......... .......... .......... .......... 17% 918K 6m44s\n 93600K .......... .......... .......... .......... .......... 17% 638K 6m44s\n 93650K .......... .......... .......... .......... .......... 17% 3.58M 6m44s\n 93700K .......... .......... .......... .......... .......... 17% 786K 6m44s\n 93750K .......... .......... .......... .......... .......... 17% 1.19M 6m44s\n 93800K .......... .......... .......... .......... .......... 17% 1.15M 6m44s\n 93850K .......... .......... .......... .......... .......... 17% 1.22M 6m44s\n 93900K .......... .......... .......... .......... .......... 17% 1.19M 6m44s\n 93950K .......... .......... .......... .......... .......... 17% 925K 6m44s\n 94000K .......... .......... .......... .......... .......... 17% 1.19M 6m44s\n 94050K .......... .......... .......... .......... .......... 17% 1.19M 6m44s\n 94100K .......... .......... .......... .......... .......... 17% 1.19M 6m44s\n 94150K .......... .......... .......... .......... .......... 17% 1.16M 6m43s\n 94200K .......... .......... .......... .......... .......... 17% 1.19M 6m43s\n 94250K .......... .......... .......... .......... .......... 17% 1.15M 6m43s\n 94300K .......... .......... .......... .......... .......... 17% 1.23M 6m43s\n 94350K .......... .......... .......... .......... .......... 17% 897K 6m43s\n 94400K .......... .......... .......... .......... .......... 17% 1.16M 6m43s\n 94450K .......... .......... .......... .......... .......... 17% 1.22M 6m43s\n 94500K .......... .......... .......... .......... .......... 17% 1.20M 6m43s\n 94550K .......... .......... .......... .......... .......... 17% 1.19M 6m43s\n 94600K .......... .......... .......... .......... .......... 17% 1.19M 6m43s\n 94650K .......... .......... .......... .......... .......... 17% 1.14M 6m43s\n 94700K .......... .......... .......... .......... .......... 17% 1.25M 6m43s\n 94750K .......... .......... .......... .......... .......... 17% 910K 6m43s\n 94800K .......... .......... .......... .......... .......... 17% 1.19M 6m43s\n 94850K .......... .......... .......... .......... .......... 17% 1.18M 6m43s\n 94900K .......... .......... .......... .......... .......... 17% 1.19M 6m43s\n 94950K .......... .......... .......... .......... .......... 17% 1.19M 6m43s\n 95000K .......... .......... .......... .......... .......... 17% 1.20M 6m42s\n 95050K .......... .......... .......... .......... .......... 17% 1.17M 6m42s\n 95100K .......... .......... .......... .......... .......... 17% 1.20M 6m42s\n 95150K .......... .......... .......... .......... .......... 17% 893K 6m42s\n 95200K .......... .......... .......... .......... .......... 17% 1.19M 6m42s\n 95250K .......... .......... .......... .......... .......... 17% 192K 6m43s\n 95300K .......... .......... .......... .......... .......... 17% 71.4M 6m43s\n 95350K .......... .......... .......... .......... .......... 17% 179M 6m43s\n 95400K .......... .......... .......... .......... .......... 17% 112M 6m42s\n 95450K .......... .......... .......... .......... .......... 17% 1.51M 6m42s\n 95500K .......... .......... .......... .......... .......... 17% 902K 6m42s\n 95550K .......... .......... .......... .......... .......... 17% 951K 6m42s\n 95600K .......... .......... .......... .......... .......... 17% 1.19M 6m42s\n 95650K .......... .......... .......... .......... .......... 17% 1.19M 6m42s\n 95700K .......... .......... .......... .......... .......... 18% 1.18M 6m42s\n 95750K .......... .......... .......... .......... .......... 18% 1.16M 6m42s\n 95800K .......... .......... .......... .......... .......... 18% 1.23M 6m42s\n 95850K .......... .......... .......... .......... .......... 18% 1.12M 6m42s\n 95900K .......... .......... .......... .......... .......... 18% 1.24M 6m42s\n 95950K .......... .......... .......... .......... .......... 18% 909K 6m42s\n 96000K .......... .......... .......... .......... .......... 18% 1.21M 6m42s\n 96050K .......... .......... .......... .......... .......... 18% 1.20M 6m42s\n 96100K .......... .......... .......... .......... .......... 18% 259K 6m42s\n 96150K .......... .......... .......... .......... .......... 18% 83.8M 6m42s\n 96200K .......... .......... .......... .......... .......... 18% 14.1M 6m42s\n 96250K .......... .......... .......... .......... .......... 18% 14.1M 6m42s\n 96300K .......... .......... .......... .......... .......... 18% 1.19M 6m41s\n 96350K .......... .......... .......... .......... .......... 18% 891K 6m41s\n 96400K .......... .......... .......... .......... .......... 18% 1.20M 6m41s\n 96450K .......... .......... .......... .......... .......... 18% 1.16M 6m41s\n 96500K .......... .......... .......... .......... .......... 18% 1.21M 6m41s\n 96550K .......... .......... .......... .......... .......... 18% 1.19M 6m41s\n 96600K .......... .......... .......... .......... .......... 18% 1.19M 6m41s\n 96650K .......... .......... .......... .......... .......... 18% 1.17M 6m41s\n 96700K .......... .......... .......... .......... .......... 18% 1.16M 6m41s\n 96750K .......... .......... .......... .......... .......... 18% 921K 6m41s\n 96800K .......... .......... .......... .......... .......... 18% 1.18M 6m41s\n 96850K .......... .......... .......... .......... .......... 18% 1.19M 6m41s\n 96900K .......... .......... .......... .......... .......... 18% 1.18M 6m41s\n 96950K .......... .......... .......... .......... .......... 18% 1.15M 6m41s\n 97000K .......... .......... .......... .......... .......... 18% 1.24M 6m41s\n 97050K .......... .......... .......... .......... .......... 18% 1.14M 6m41s\n 97100K .......... .......... .......... .......... .......... 18% 1.20M 6m41s\n 97150K .......... .......... .......... .......... .......... 18% 927K 6m40s\n 97200K .......... .......... .......... .......... .......... 18% 1.19M 6m40s\n 97250K .......... .......... .......... .......... .......... 18% 1.18M 6m40s\n 97300K .......... .......... .......... .......... .......... 18% 1.19M 6m40s\n 97350K .......... .......... .......... .......... .......... 18% 1.10M 6m40s\n 97400K .......... .......... .......... .......... .......... 18% 1.29M 6m40s\n 97450K .......... .......... .......... .......... .......... 18% 1.15M 6m40s\n 97500K .......... .......... .......... .......... .......... 18% 1.22M 6m40s\n 97550K .......... .......... .......... .......... .......... 18% 905K 6m40s\n 97600K .......... .......... .......... .......... .......... 18% 1.17M 6m40s\n 97650K .......... .......... .......... .......... .......... 18% 1.20M 6m40s\n 97700K .......... .......... .......... .......... .......... 18% 1.19M 6m40s\n 97750K .......... .......... .......... .......... .......... 18% 1.20M 6m40s\n 97800K .......... .......... .......... .......... .......... 18% 1.17M 6m40s\n 97850K .......... .......... .......... .......... .......... 18% 1.21M 6m40s\n 97900K .......... .......... .......... .......... .......... 18% 1.17M 6m40s\n 97950K .......... .......... .......... .......... .......... 18% 914K 6m40s\n 98000K .......... .......... .......... .......... .......... 18% 1.20M 6m39s\n 98050K .......... .......... .......... .......... .......... 18% 1.18M 6m39s\n 98100K .......... .......... .......... .......... .......... 18% 1.20M 6m39s\n 98150K .......... .......... .......... .......... .......... 18% 1.19M 6m39s\n 98200K .......... .......... .......... .......... .......... 18% 1.19M 6m39s\n 98250K .......... .......... .......... .......... .......... 18% 1.18M 6m39s\n 98300K .......... .......... .......... .......... .......... 18% 1.18M 6m39s\n 98350K .......... .......... .......... .......... .......... 18% 900K 6m39s\n 98400K .......... .......... .......... .......... .......... 18% 1.18M 6m39s\n 98450K .......... .......... .......... .......... .......... 18% 1.18M 6m39s\n 98500K .......... .......... .......... .......... .......... 18% 1.20M 6m39s\n 98550K .......... .......... .......... .......... .......... 18% 1.16M 6m39s\n 98600K .......... .......... .......... .......... .......... 18% 1.20M 6m39s\n 98650K .......... .......... .......... .......... .......... 18% 223K 6m39s\n 98700K .......... .......... .......... .......... .......... 18% 78.7M 6m39s\n 98750K .......... .......... .......... .......... .......... 18% 132M 6m39s\n 98800K .......... .......... .......... .......... .......... 18% 28.4M 6m39s\n 98850K .......... .......... .......... .......... .......... 18% 175M 6m38s\n 98900K .......... .......... .......... .......... .......... 18% 726K 6m39s\n 98950K .......... .......... .......... .......... .......... 18% 1.17M 6m38s\n 99000K .......... .......... .......... .......... .......... 18% 1.17M 6m38s\n 99050K .......... .......... .......... .......... .......... 18% 1.23M 6m38s\n 99100K .......... .......... .......... .......... .......... 18% 1.18M 6m38s\n 99150K .......... .......... .......... .......... .......... 18% 914K 6m38s\n 99200K .......... .......... .......... .......... .......... 18% 1.20M 6m38s\n 99250K .......... .......... .......... .......... .......... 18% 1.19M 6m38s\n 99300K .......... .......... .......... .......... .......... 18% 1.16M 6m38s\n 99350K .......... .......... .......... .......... .......... 18% 1.18M 6m38s\n 99400K .......... .......... .......... .......... .......... 18% 1.24M 6m38s\n 99450K .......... .......... .......... .......... .......... 18% 1.17M 6m38s\n 99500K .......... .......... .......... .......... .......... 18% 1.17M 6m38s\n 99550K .......... .......... .......... .......... .......... 18% 890K 6m38s\n 99600K .......... .......... .......... .......... .......... 18% 1.11M 6m38s\n 99650K .......... .......... .......... .......... .......... 18% 1.35M 6m38s\n 99700K .......... .......... .......... .......... .......... 18% 1.10M 6m38s\n 99750K .......... .......... .......... .......... .......... 18% 1.24M 6m38s\n 99800K .......... .......... .......... .......... .......... 18% 1.20M 6m37s\n 99850K .......... .......... .......... .......... .......... 18% 1.13M 6m37s\n 99900K .......... .......... .......... .......... .......... 18% 1.27M 6m37s\n 99950K .......... .......... .......... .......... .......... 18% 924K 6m37s\n100000K .......... .......... .......... .......... .......... 18% 1.16M 6m37s\n100050K .......... .......... .......... .......... .......... 18% 1.19M 6m37s\n100100K .......... .......... .......... .......... .......... 18% 1.20M 6m37s\n100150K .......... .......... .......... .......... .......... 18% 1.16M 6m37s\n100200K .......... .......... .......... .......... .......... 18% 1.20M 6m37s\n100250K .......... .......... .......... .......... .......... 18% 1.17M 6m37s\n100300K .......... .......... .......... .......... .......... 18% 1.16M 6m37s\n100350K .......... .......... .......... .......... .......... 18% 913K 6m37s\n100400K .......... .......... .......... .......... .......... 18% 1.21M 6m37s\n100450K .......... .......... .......... .......... .......... 18% 1.15M 6m37s\n100500K .......... .......... .......... .......... .......... 18% 1.26M 6m37s\n100550K .......... .......... .......... .......... .......... 18% 1.19M 6m37s\n100600K .......... .......... .......... .......... .......... 18% 1.18M 6m36s\n100650K .......... .......... .......... .......... .......... 18% 1.16M 6m36s\n100700K .......... .......... .......... .......... .......... 18% 1.19M 6m36s\n100750K .......... .......... .......... .......... .......... 18% 916K 6m36s\n100800K .......... .......... .......... .......... .......... 18% 1.17M 6m36s\n100850K .......... .......... .......... .......... .......... 18% 1.19M 6m36s\n100900K .......... .......... .......... .......... .......... 18% 1.04M 6m36s\n100950K .......... .......... .......... .......... .......... 18% 1.36M 6m36s\n101000K .......... .......... .......... .......... .......... 18% 1.19M 6m36s\n101050K .......... .......... .......... .......... .......... 19% 1.21M 6m36s\n101100K .......... .......... .......... .......... .......... 19% 1.15M 6m36s\n101150K .......... .......... .......... .......... .......... 19% 856K 6m36s\n101200K .......... .......... .......... .......... .......... 19% 1.25M 6m36s\n101250K .......... .......... .......... .......... .......... 19% 1.22M 6m36s\n101300K .......... .......... .......... .......... .......... 19% 1.24M 6m36s\n101350K .......... .......... .......... .......... .......... 19% 1.22M 6m36s\n101400K .......... .......... .......... .......... .......... 19% 1.17M 6m36s\n101450K .......... .......... .......... .......... .......... 19% 1.15M 6m35s\n101500K .......... .......... .......... .......... .......... 19% 1.16M 6m35s\n101550K .......... .......... .......... .......... .......... 19% 922K 6m35s\n101600K .......... .......... .......... .......... .......... 19% 1.22M 6m35s\n101650K .......... .......... .......... .......... .......... 19% 1.03M 6m35s\n101700K .......... .......... .......... .......... .......... 19% 1.36M 6m35s\n101750K .......... .......... .......... .......... .......... 19% 1.21M 6m35s\n101800K .......... .......... .......... .......... .......... 19% 1.18M 6m35s\n101850K .......... .......... .......... .......... .......... 19% 1.17M 6m35s\n101900K .......... .......... .......... .......... .......... 19% 1.22M 6m35s\n101950K .......... .......... .......... .......... .......... 19% 923K 6m35s\n102000K .......... .......... .......... .......... .......... 19% 1.05M 6m35s\n102050K .......... .......... .......... .......... .......... 19% 1.38M 6m35s\n102100K .......... .......... .......... .......... .......... 19% 1.15M 6m35s\n102150K .......... .......... .......... .......... .......... 19% 1.17M 6m35s\n102200K .......... .......... .......... .......... .......... 19% 1.17M 6m35s\n102250K .......... .......... .......... .......... .......... 19% 1.21M 6m35s\n102300K .......... .......... .......... .......... .......... 19% 1.19M 6m34s\n102350K .......... .......... .......... .......... .......... 19% 906K 6m34s\n102400K .......... .......... .......... .......... .......... 19% 1.22M 6m34s\n102450K .......... .......... .......... .......... .......... 19% 1.13M 6m34s\n102500K .......... .......... .......... .......... .......... 19% 1.22M 6m34s\n102550K .......... .......... .......... .......... .......... 19% 1.22M 6m34s\n102600K .......... .......... .......... .......... .......... 19% 1.18M 6m34s\n102650K .......... .......... .......... .......... .......... 19% 1.16M 6m34s\n102700K .......... .......... .......... .......... .......... 19% 1.20M 6m34s\n102750K .......... .......... .......... .......... .......... 19% 885K 6m34s\n102800K .......... .......... .......... .......... .......... 19% 1.16M 6m34s\n102850K .......... .......... .......... .......... .......... 19% 1.24M 6m34s\n102900K .......... .......... .......... .......... .......... 19% 1.17M 6m34s\n102950K .......... .......... .......... .......... .......... 19% 1.21M 6m34s\n103000K .......... .......... .......... .......... .......... 19% 1.20M 6m34s\n103050K .......... .......... .......... .......... .......... 19% 1.11M 6m34s\n103100K .......... .......... .......... .......... .......... 19% 1.19M 6m34s\n103150K .......... .......... .......... .......... .......... 19% 899K 6m34s\n103200K .......... .......... .......... .......... .......... 19% 1.21M 6m33s\n103250K .......... .......... .......... .......... .......... 19% 1.21M 6m33s\n103300K .......... .......... .......... .......... .......... 19% 1.19M 6m33s\n103350K .......... .......... .......... .......... .......... 19% 1.12M 6m33s\n103400K .......... .......... .......... .......... .......... 19% 1.17M 6m33s\n103450K .......... .......... .......... .......... .......... 19% 1.29M 6m33s\n103500K .......... .......... .......... .......... .......... 19% 1.19M 6m33s\n103550K .......... .......... .......... .......... .......... 19% 909K 6m33s\n103600K .......... .......... .......... .......... .......... 19% 1.19M 6m33s\n103650K .......... .......... .......... .......... .......... 19% 1.19M 6m33s\n103700K .......... .......... .......... .......... .......... 19% 1.19M 6m33s\n103750K .......... .......... .......... .......... .......... 19% 1.18M 6m33s\n103800K .......... .......... .......... .......... .......... 19% 1.20M 6m33s\n103850K .......... .......... .......... .......... .......... 19% 1.20M 6m33s\n103900K .......... .......... .......... .......... .......... 19% 1.15M 6m33s\n103950K .......... .......... .......... .......... .......... 19% 933K 6m33s\n104000K .......... .......... .......... .......... .......... 19% 1.16M 6m33s\n104050K .......... .......... .......... .......... .......... 19% 1.19M 6m32s\n104100K .......... .......... .......... .......... .......... 19% 1.13M 6m32s\n104150K .......... .......... .......... .......... .......... 19% 1.24M 6m32s\n104200K .......... .......... .......... .......... .......... 19% 1.14M 6m32s\n104250K .......... .......... .......... .......... .......... 19% 1.22M 6m32s\n104300K .......... .......... .......... .......... .......... 19% 1.19M 6m32s\n104350K .......... .......... .......... .......... .......... 19% 883K 6m32s\n104400K .......... .......... .......... .......... .......... 19% 1.24M 6m32s\n104450K .......... .......... .......... .......... .......... 19% 1.18M 6m32s\n104500K .......... .......... .......... .......... .......... 19% 1.15M 6m32s\n104550K .......... .......... .......... .......... .......... 19% 1.22M 6m32s\n104600K .......... .......... .......... .......... .......... 19% 1.20M 6m32s\n104650K .......... .......... .......... .......... .......... 19% 1.18M 6m32s\n104700K .......... .......... .......... .......... .......... 19% 1.21M 6m32s\n104750K .......... .......... .......... .......... .......... 19% 888K 6m32s\n104800K .......... .......... .......... .......... .......... 19% 1.22M 6m32s\n104850K .......... .......... .......... .......... .......... 19% 1.17M 6m32s\n104900K .......... .......... .......... .......... .......... 19% 1.19M 6m31s\n104950K .......... .......... .......... .......... .......... 19% 1.16M 6m31s\n105000K .......... .......... .......... .......... .......... 19% 1.22M 6m31s\n105050K .......... .......... .......... .......... .......... 19% 1.20M 6m31s\n105100K .......... .......... .......... .......... .......... 19% 1.16M 6m31s\n105150K .......... .......... .......... .......... .......... 19% 926K 6m31s\n105200K .......... .......... .......... .......... .......... 19% 1.18M 6m31s\n105250K .......... .......... .......... .......... .......... 19% 1.21M 6m31s\n105300K .......... .......... .......... .......... .......... 19% 1.18M 6m31s\n105350K .......... .......... .......... .......... .......... 19% 1.19M 6m31s\n105400K .......... .......... .......... .......... .......... 19% 1.15M 6m31s\n105450K .......... .......... .......... .......... .......... 19% 1.22M 6m31s\n105500K .......... .......... .......... .......... .......... 19% 1.18M 6m31s\n105550K .......... .......... .......... .......... .......... 19% 923K 6m31s\n105600K .......... .......... .......... .......... .......... 19% 1.21M 6m31s\n105650K .......... .......... .......... .......... .......... 19% 1.11M 6m31s\n105700K .......... .......... .......... .......... .......... 19% 1.10M 6m31s\n105750K .......... .......... .......... .......... .......... 19% 1.33M 6m30s\n105800K .......... .......... .......... .......... .......... 19% 1.19M 6m30s\n105850K .......... .......... .......... .......... .......... 19% 192K 6m31s\n105900K .......... .......... .......... .......... .......... 19% 78.0M 6m31s\n105950K .......... .......... .......... .......... .......... 19% 127M 6m31s\n106000K .......... .......... .......... .......... .......... 19% 1.23M 6m31s\n106050K .......... .......... .......... .......... .......... 19% 1.16M 6m31s\n106100K .......... .......... .......... .......... .......... 19% 1.18M 6m31s\n106150K .......... .......... .......... .......... .......... 19% 1.20M 6m31s\n106200K .......... .......... .......... .......... .......... 19% 1.17M 6m30s\n106250K .......... .......... .......... .......... .......... 19% 1.12M 6m30s\n106300K .......... .......... .......... .......... .......... 19% 1.18M 6m30s\n106350K .......... .......... .......... .......... .......... 20% 945K 6m30s\n106400K .......... .......... .......... .......... .......... 20% 1.16M 6m30s\n106450K .......... .......... .......... .......... .......... 20% 1.25M 6m30s\n106500K .......... .......... .......... .......... .......... 20% 1.18M 6m30s\n106550K .......... .......... .......... .......... .......... 20% 1.21M 6m30s\n106600K .......... .......... .......... .......... .......... 20% 1.16M 6m30s\n106650K .......... .......... .......... .......... .......... 20% 1.20M 6m30s\n106700K .......... .......... .......... .......... .......... 20% 210K 6m31s\n106750K .......... .......... .......... .......... .......... 20% 164M 6m30s\n106800K .......... .......... .......... .......... .......... 20% 453M 6m30s\n106850K .......... .......... .......... .......... .......... 20% 1.49M 6m30s\n106900K .......... .......... .......... .......... .......... 20% 848K 6m30s\n106950K .......... .......... .......... .......... .......... 20% 221K 6m31s\n107000K .......... .......... .......... .......... .......... 20% 7.04M 6m31s\n107050K .......... .......... .......... .......... .......... 20% 427M 6m30s\n107100K .......... .......... .......... .......... .......... 20% 502M 6m30s\n107150K .......... .......... .......... .......... .......... 20% 2.07M 6m30s\n107200K .......... .......... .......... .......... .......... 20% 1.18M 6m30s\n107250K .......... .......... .......... .......... .......... 20% 1.20M 6m30s\n107300K .......... .......... .......... .......... .......... 20% 1.17M 6m30s\n107350K .......... .......... .......... .......... .......... 20% 1.17M 6m30s\n107400K .......... .......... .......... .......... .......... 20% 1.22M 6m30s\n107450K .......... .......... .......... .......... .......... 20% 1.16M 6m30s\n107500K .......... .......... .......... .......... .......... 20% 1.20M 6m30s\n107550K .......... .......... .......... .......... .......... 20% 898K 6m30s\n107600K .......... .......... .......... .......... .......... 20% 1.22M 6m29s\n107650K .......... .......... .......... .......... .......... 20% 1.20M 6m29s\n107700K .......... .......... .......... .......... .......... 20% 1.19M 6m29s\n107750K .......... .......... .......... .......... .......... 20% 1.18M 6m29s\n107800K .......... .......... .......... .......... .......... 20% 1.19M 6m29s\n107850K .......... .......... .......... .......... .......... 20% 1.20M 6m29s\n107900K .......... .......... .......... .......... .......... 20% 1.19M 6m29s\n107950K .......... .......... .......... .......... .......... 20% 904K 6m29s\n108000K .......... .......... .......... .......... .......... 20% 1.16M 6m29s\n108050K .......... .......... .......... .......... .......... 20% 1.20M 6m29s\n108100K .......... .......... .......... .......... .......... 20% 1.14M 6m29s\n108150K .......... .......... .......... .......... .......... 20% 1.26M 6m29s\n108200K .......... .......... .......... .......... .......... 20% 1.16M 6m29s\n108250K .......... .......... .......... .......... .......... 20% 1.19M 6m29s\n108300K .......... .......... .......... .......... .......... 20% 1.21M 6m29s\n108350K .......... .......... .......... .......... .......... 20% 904K 6m29s\n108400K .......... .......... .......... .......... .......... 20% 1.17M 6m29s\n108450K .......... .......... .......... .......... .......... 20% 1.20M 6m28s\n108500K .......... .......... .......... .......... .......... 20% 1.19M 6m28s\n108550K .......... .......... .......... .......... .......... 20% 1.20M 6m28s\n108600K .......... .......... .......... .......... .......... 20% 1.16M 6m28s\n108650K .......... .......... .......... .......... .......... 20% 1.23M 6m28s\n108700K .......... .......... .......... .......... .......... 20% 1.04M 6m28s\n108750K .......... .......... .......... .......... .......... 20% 1023K 6m28s\n108800K .......... .......... .......... .......... .......... 20% 1.20M 6m28s\n108850K .......... .......... .......... .......... .......... 20% 1.19M 6m28s\n108900K .......... .......... .......... .......... .......... 20% 1.18M 6m28s\n108950K .......... .......... .......... .......... .......... 20% 1.17M 6m28s\n109000K .......... .......... .......... .......... .......... 20% 1.20M 6m28s\n109050K .......... .......... .......... .......... .......... 20% 1.12M 6m28s\n109100K .......... .......... .......... .......... .......... 20% 1.02M 6m28s\n109150K .......... .......... .......... .......... .......... 20% 1.06M 6m28s\n109200K .......... .......... .......... .......... .......... 20% 193K 6m28s\n109250K .......... .......... .......... .......... .......... 20% 66.0M 6m28s\n109300K .......... .......... .......... .......... .......... 20% 124M 6m28s\n109350K .......... .......... .......... .......... .......... 20% 81.6M 6m28s\n109400K .......... .......... .......... .......... .......... 20% 1.53M 6m28s\n109450K .......... .......... .......... .......... .......... 20% 886K 6m28s\n109500K .......... .......... .......... .......... .......... 20% 1.15M 6m28s\n109550K .......... .......... .......... .......... .......... 20% 937K 6m28s\n109600K .......... .......... .......... .......... .......... 20% 1.18M 6m28s\n109650K .......... .......... .......... .......... .......... 20% 1.06M 6m27s\n109700K .......... .......... .......... .......... .......... 20% 1.34M 6m27s\n109750K .......... .......... .......... .......... .......... 20% 1.21M 6m27s\n109800K .......... .......... .......... .......... .......... 20% 1.17M 6m27s\n109850K .......... .......... .......... .......... .......... 20% 1.19M 6m27s\n109900K .......... .......... .......... .......... .......... 20% 1.14M 6m27s\n109950K .......... .......... .......... .......... .......... 20% 945K 6m27s\n110000K .......... .......... .......... .......... .......... 20% 1.19M 6m27s\n110050K .......... .......... .......... .......... .......... 20% 1.19M 6m27s\n110100K .......... .......... .......... .......... .......... 20% 238K 6m28s\n110150K .......... .......... .......... .......... .......... 20% 40.2M 6m27s\n110200K .......... .......... .......... .......... .......... 20% 43.7M 6m27s\n110250K .......... .......... .......... .......... .......... 20% 10.5M 6m27s\n110300K .......... .......... .......... .......... .......... 20% 8.31M 6m27s\n110350K .......... .......... .......... .......... .......... 20% 683K 6m27s\n110400K .......... .......... .......... .......... .......... 20% 1.19M 6m27s\n110450K .......... .......... .......... .......... .......... 20% 1.16M 6m27s\n110500K .......... .......... .......... .......... .......... 20% 1.20M 6m27s\n110550K .......... .......... .......... .......... .......... 20% 1.14M 6m27s\n110600K .......... .......... .......... .......... .......... 20% 1.25M 6m26s\n110650K .......... .......... .......... .......... .......... 20% 1.19M 6m26s\n110700K .......... .......... .......... .......... .......... 20% 1.16M 6m26s\n110750K .......... .......... .......... .......... .......... 20% 930K 6m26s\n110800K .......... .......... .......... .......... .......... 20% 1.06M 6m26s\n110850K .......... .......... .......... .......... .......... 20% 1.35M 6m26s\n110900K .......... .......... .......... .......... .......... 20% 1.18M 6m26s\n110950K .......... .......... .......... .......... .......... 20% 1.18M 6m26s\n111000K .......... .......... .......... .......... .......... 20% 1.21M 6m26s\n111050K .......... .......... .......... .......... .......... 20% 1.09M 6m26s\n111100K .......... .......... .......... .......... .......... 20% 1.29M 6m26s\n111150K .......... .......... .......... .......... .......... 20% 894K 6m26s\n111200K .......... .......... .......... .......... .......... 20% 1.20M 6m26s\n111250K .......... .......... .......... .......... .......... 20% 1.18M 6m26s\n111300K .......... .......... .......... .......... .......... 20% 1.20M 6m26s\n111350K .......... .......... .......... .......... .......... 20% 1.17M 6m26s\n111400K .......... .......... .......... .......... .......... 20% 1.21M 6m26s\n111450K .......... .......... .......... .......... .......... 20% 1.18M 6m26s\n111500K .......... .......... .......... .......... .......... 20% 1.20M 6m25s\n111550K .......... .......... .......... .......... .......... 20% 902K 6m25s\n111600K .......... .......... .......... .......... .......... 20% 1.17M 6m25s\n111650K .......... .......... .......... .......... .......... 21% 1.23M 6m25s\n111700K .......... .......... .......... .......... .......... 21% 1.18M 6m25s\n111750K .......... .......... .......... .......... .......... 21% 1.18M 6m25s\n111800K .......... .......... .......... .......... .......... 21% 1.19M 6m25s\n111850K .......... .......... .......... .......... .......... 21% 1.20M 6m25s\n111900K .......... .......... .......... .......... .......... 21% 1.19M 6m25s\n111950K .......... .......... .......... .......... .......... 21% 903K 6m25s\n112000K .......... .......... .......... .......... .......... 21% 1.18M 6m25s\n112050K .......... .......... .......... .......... .......... 21% 1.21M 6m25s\n112100K .......... .......... .......... .......... .......... 21% 1.16M 6m25s\n112150K .......... .......... .......... .......... .......... 21% 1.22M 6m25s\n112200K .......... .......... .......... .......... .......... 21% 1.20M 6m25s\n112250K .......... .......... .......... .......... .......... 21% 1.13M 6m25s\n112300K .......... .......... .......... .......... .......... 21% 1.24M 6m25s\n112350K .......... .......... .......... .......... .......... 21% 899K 6m25s\n112400K .......... .......... .......... .......... .......... 21% 1.19M 6m24s\n112450K .......... .......... .......... .......... .......... 21% 1.15M 6m24s\n112500K .......... .......... .......... .......... .......... 21% 1.21M 6m24s\n112550K .......... .......... .......... .......... .......... 21% 1.20M 6m24s\n112600K .......... .......... .......... .......... .......... 21% 1.16M 6m24s\n112650K .......... .......... .......... .......... .......... 21% 222K 6m25s\n112700K .......... .......... .......... .......... .......... 21% 82.3M 6m25s\n112750K .......... .......... .......... .......... .......... 21% 499K 6m25s\n112800K .......... .......... .......... .......... .......... 21% 139M 6m25s\n112850K .......... .......... .......... .......... .......... 21% 833K 6m25s\n112900K .......... .......... .......... .......... .......... 21% 1.19M 6m24s\n112950K .......... .......... .......... .......... .......... 21% 1.12M 6m24s\n113000K .......... .......... .......... .......... .......... 21% 1.26M 6m24s\n113050K .......... .......... .......... .......... .......... 21% 1.18M 6m24s\n113100K .......... .......... .......... .......... .......... 21% 1.17M 6m24s\n113150K .......... .......... .......... .......... .......... 21% 930K 6m24s\n113200K .......... .......... .......... .......... .......... 21% 1.14M 6m24s\n113250K .......... .......... .......... .......... .......... 21% 1.23M 6m24s\n113300K .......... .......... .......... .......... .......... 21% 1.15M 6m24s\n113350K .......... .......... .......... .......... .......... 21% 1.22M 6m24s\n113400K .......... .......... .......... .......... .......... 21% 1.10M 6m24s\n113450K .......... .......... .......... .......... .......... 21% 1.29M 6m24s\n113500K .......... .......... .......... .......... .......... 21% 1.20M 6m24s\n113550K .......... .......... .......... .......... .......... 21% 893K 6m24s\n113600K .......... .......... .......... .......... .......... 21% 1.19M 6m24s\n113650K .......... .......... .......... .......... .......... 21% 1.19M 6m24s\n113700K .......... .......... .......... .......... .......... 21% 1.20M 6m24s\n113750K .......... .......... .......... .......... .......... 21% 1.17M 6m24s\n113800K .......... .......... .......... .......... .......... 21% 1.19M 6m23s\n113850K .......... .......... .......... .......... .......... 21% 1.19M 6m23s\n113900K .......... .......... .......... .......... .......... 21% 1.20M 6m23s\n113950K .......... .......... .......... .......... .......... 21% 893K 6m23s\n114000K .......... .......... .......... .......... .......... 21% 1.22M 6m23s\n114050K .......... .......... .......... .......... .......... 21% 263K 6m24s\n114100K .......... .......... .......... .......... .......... 21% 19.9M 6m24s\n114150K .......... .......... .......... .......... .......... 21% 13.3M 6m23s\n114200K .......... .......... .......... .......... .......... 21% 931K 6m23s\n114250K .......... .......... .......... .......... .......... 21% 1.41M 6m23s\n114300K .......... .......... .......... .......... .......... 21% 1.38M 6m23s\n114350K .......... .......... .......... .......... .......... 21% 882K 6m23s\n114400K .......... .......... .......... .......... .......... 21% 1.23M 6m23s\n114450K .......... .......... .......... .......... .......... 21% 1.17M 6m23s\n114500K .......... .......... .......... .......... .......... 21% 1.20M 6m23s\n114550K .......... .......... .......... .......... .......... 21% 1.18M 6m23s\n114600K .......... .......... .......... .......... .......... 21% 1.19M 6m23s\n114650K .......... .......... .......... .......... .......... 21% 1.15M 6m23s\n114700K .......... .......... .......... .......... .......... 21% 1.16M 6m23s\n114750K .......... .......... .......... .......... .......... 21% 919K 6m23s\n114800K .......... .......... .......... .......... .......... 21% 1.21M 6m23s\n114850K .......... .......... .......... .......... .......... 21% 1.20M 6m23s\n114900K .......... .......... .......... .......... .......... 21% 1.18M 6m22s\n114950K .......... .......... .......... .......... .......... 21% 1.17M 6m22s\n115000K .......... .......... .......... .......... .......... 21% 1.20M 6m22s\n115050K .......... .......... .......... .......... .......... 21% 1.20M 6m22s\n115100K .......... .......... .......... .......... .......... 21% 1.17M 6m22s\n115150K .......... .......... .......... .......... .......... 21% 917K 6m22s\n115200K .......... .......... .......... .......... .......... 21% 1.19M 6m22s\n115250K .......... .......... .......... .......... .......... 21% 1.20M 6m22s\n115300K .......... .......... .......... .......... .......... 21% 1.20M 6m22s\n115350K .......... .......... .......... .......... .......... 21% 1.18M 6m22s\n115400K .......... .......... .......... .......... .......... 21% 1.18M 6m22s\n115450K .......... .......... .......... .......... .......... 21% 1.18M 6m22s\n115500K .......... .......... .......... .......... .......... 21% 1.21M 6m22s\n115550K .......... .......... .......... .......... .......... 21% 262K 6m22s\n115600K .......... .......... .......... .......... .......... 21% 23.3M 6m22s\n115650K .......... .......... .......... .......... .......... 21% 6.97M 6m22s\n115700K .......... .......... .......... .......... .......... 21% 253K 6m22s\n115750K .......... .......... .......... .......... .......... 21% 17.7M 6m22s\n115800K .......... .......... .......... .......... .......... 21% 64.1M 6m22s\n115850K .......... .......... .......... .......... .......... 21% 164M 6m22s\n115900K .......... .......... .......... .......... .......... 21% 163M 6m22s\n115950K .......... .......... .......... .......... .......... 21% 745K 6m22s\n116000K .......... .......... .......... .......... .......... 21% 1.19M 6m21s\n116050K .......... .......... .......... .......... .......... 21% 1.17M 6m21s\n116100K .......... .......... .......... .......... .......... 21% 1.14M 6m21s\n116150K .......... .......... .......... .......... .......... 21% 1.22M 6m21s\n116200K .......... .......... .......... .......... .......... 21% 1.16M 6m21s\n116250K .......... .......... .......... .......... .......... 21% 1.23M 6m21s\n116300K .......... .......... .......... .......... .......... 21% 1.19M 6m21s\n116350K .......... .......... .......... .......... .......... 21% 906K 6m21s\n116400K .......... .......... .......... .......... .......... 21% 1.20M 6m21s\n116450K .......... .......... .......... .......... .......... 21% 1.20M 6m21s\n116500K .......... .......... .......... .......... .......... 21% 1.18M 6m21s\n116550K .......... .......... .......... .......... .......... 21% 1.19M 6m21s\n116600K .......... .......... .......... .......... .......... 21% 1.19M 6m21s\n116650K .......... .......... .......... .......... .......... 21% 1.18M 6m21s\n116700K .......... .......... .......... .......... .......... 21% 1.19M 6m21s\n116750K .......... .......... .......... .......... .......... 21% 896K 6m21s\n116800K .......... .......... .......... .......... .......... 21% 1.19M 6m21s\n116850K .......... .......... .......... .......... .......... 21% 1.17M 6m21s\n116900K .......... .......... .......... .......... .......... 21% 1.20M 6m20s\n116950K .......... .......... .......... .......... .......... 21% 1.20M 6m20s\n117000K .......... .......... .......... .......... .......... 22% 1.16M 6m20s\n117050K .......... .......... .......... .......... .......... 22% 1.19M 6m20s\n117100K .......... .......... .......... .......... .......... 22% 1.20M 6m20s\n117150K .......... .......... .......... .......... .......... 22% 864K 6m20s\n117200K .......... .......... .......... .......... .......... 22% 1.30M 6m20s\n117250K .......... .......... .......... .......... .......... 22% 1.10M 6m20s\n117300K .......... .......... .......... .......... .......... 22% 1.31M 6m20s\n117350K .......... .......... .......... .......... .......... 22% 218K 6m21s\n117400K .......... .......... .......... .......... .......... 22% 1.35M 6m21s\n117450K .......... .......... .......... .......... .......... 22% 123M 6m20s\n117500K .......... .......... .......... .......... .......... 22% 88.9M 6m20s\n117550K .......... .......... .......... .......... .......... 22% 1.44M 6m20s\n117600K .......... .......... .......... .......... .......... 22% 751K 6m20s\n117650K .......... .......... .......... .......... .......... 22% 230K 6m21s\n117700K .......... .......... .......... .......... .......... 22% 41.9M 6m20s\n117750K .......... .......... .......... .......... .......... 22% 90.4M 6m20s\n117800K .......... .......... .......... .......... .......... 22% 129M 6m20s\n117850K .......... .......... .......... .......... .......... 22% 125M 6m20s\n117900K .......... .......... .......... .......... .......... 22% 835K 6m20s\n117950K .......... .......... .......... .......... .......... 22% 910K 6m20s\n118000K .......... .......... .......... .......... .......... 22% 1.20M 6m20s\n118050K .......... .......... .......... .......... .......... 22% 1.19M 6m20s\n118100K .......... .......... .......... .......... .......... 22% 1.17M 6m20s\n118150K .......... .......... .......... .......... .......... 22% 1.20M 6m20s\n118200K .......... .......... .......... .......... .......... 22% 1.19M 6m19s\n118250K .......... .......... .......... .......... .......... 22% 1.20M 6m19s\n118300K .......... .......... .......... .......... .......... 22% 1.18M 6m19s\n118350K .......... .......... .......... .......... .......... 22% 910K 6m19s\n118400K .......... .......... .......... .......... .......... 22% 1.12M 6m19s\n118450K .......... .......... .......... .......... .......... 22% 1.26M 6m19s\n118500K .......... .......... .......... .......... .......... 22% 1.17M 6m19s\n118550K .......... .......... .......... .......... .......... 22% 1.22M 6m19s\n118600K .......... .......... .......... .......... .......... 22% 1.15M 6m19s\n118650K .......... .......... .......... .......... .......... 22% 1.18M 6m19s\n118700K .......... .......... .......... .......... .......... 22% 1.22M 6m19s\n118750K .......... .......... .......... .......... .......... 22% 908K 6m19s\n118800K .......... .......... .......... .......... .......... 22% 1.19M 6m19s\n118850K .......... .......... .......... .......... .......... 22% 1.18M 6m19s\n118900K .......... .......... .......... .......... .......... 22% 1.16M 6m19s\n118950K .......... .......... .......... .......... .......... 22% 1.19M 6m19s\n119000K .......... .......... .......... .......... .......... 22% 1.18M 6m19s\n119050K .......... .......... .......... .......... .......... 22% 1.19M 6m19s\n119100K .......... .......... .......... .......... .......... 22% 1.18M 6m18s\n119150K .......... .......... .......... .......... .......... 22% 921K 6m18s\n119200K .......... .......... .......... .......... .......... 22% 1.18M 6m18s\n119250K .......... .......... .......... .......... .......... 22% 1.18M 6m18s\n119300K .......... .......... .......... .......... .......... 22% 1.16M 6m18s\n119350K .......... .......... .......... .......... .......... 22% 1.23M 6m18s\n119400K .......... .......... .......... .......... .......... 22% 1.18M 6m18s\n119450K .......... .......... .......... .......... .......... 22% 1.19M 6m18s\n119500K .......... .......... .......... .......... .......... 22% 1.16M 6m18s\n119550K .......... .......... .......... .......... .......... 22% 918K 6m18s\n119600K .......... .......... .......... .......... .......... 22% 1.18M 6m18s\n119650K .......... .......... .......... .......... .......... 22% 1.21M 6m18s\n119700K .......... .......... .......... .......... .......... 22% 1.21M 6m18s\n119750K .......... .......... .......... .......... .......... 22% 1.19M 6m18s\n119800K .......... .......... .......... .......... .......... 22% 1.16M 6m18s\n119850K .......... .......... .......... .......... .......... 22% 1.16M 6m18s\n119900K .......... .......... .......... .......... .......... 22% 1.20M 6m18s\n119950K .......... .......... .......... .......... .......... 22% 889K 6m18s\n120000K .......... .......... .......... .......... .......... 22% 1.19M 6m17s\n120050K .......... .......... .......... .......... .......... 22% 1.23M 6m17s\n120100K .......... .......... .......... .......... .......... 22% 1.20M 6m17s\n120150K .......... .......... .......... .......... .......... 22% 1.19M 6m17s\n120200K .......... .......... .......... .......... .......... 22% 1.16M 6m17s\n120250K .......... .......... .......... .......... .......... 22% 1.19M 6m17s\n120300K .......... .......... .......... .......... .......... 22% 1.12M 6m17s\n120350K .......... .......... .......... .......... .......... 22% 958K 6m17s\n120400K .......... .......... .......... .......... .......... 22% 1.20M 6m17s\n120450K .......... .......... .......... .......... .......... 22% 1.15M 6m17s\n120500K .......... .......... .......... .......... .......... 22% 1.18M 6m17s\n120550K .......... .......... .......... .......... .......... 22% 1.21M 6m17s\n120600K .......... .......... .......... .......... .......... 22% 1.19M 6m17s\n120650K .......... .......... .......... .......... .......... 22% 1.19M 6m17s\n120700K .......... .......... .......... .......... .......... 22% 1.17M 6m17s\n120750K .......... .......... .......... .......... .......... 22% 920K 6m17s\n120800K .......... .......... .......... .......... .......... 22% 1.17M 6m17s\n120850K .......... .......... .......... .......... .......... 22% 1.17M 6m17s\n120900K .......... .......... .......... .......... .......... 22% 1.18M 6m16s\n120950K .......... .......... .......... .......... .......... 22% 1.20M 6m16s\n121000K .......... .......... .......... .......... .......... 22% 1.18M 6m16s\n121050K .......... .......... .......... .......... .......... 22% 1.20M 6m16s\n121100K .......... .......... .......... .......... .......... 22% 1.20M 6m16s\n121150K .......... .......... .......... .......... .......... 22% 876K 6m16s\n121200K .......... .......... .......... .......... .......... 22% 1.24M 6m16s\n121250K .......... .......... .......... .......... .......... 22% 1.18M 6m16s\n121300K .......... .......... .......... .......... .......... 22% 1.22M 6m16s\n121350K .......... .......... .......... .......... .......... 22% 1.20M 6m16s\n121400K .......... .......... .......... .......... .......... 22% 1.12M 6m16s\n121450K .......... .......... .......... .......... .......... 22% 1.22M 6m16s\n121500K .......... .......... .......... .......... .......... 22% 1.20M 6m16s\n121550K .......... .......... .......... .......... .......... 22% 919K 6m16s\n121600K .......... .......... .......... .......... .......... 22% 1.19M 6m16s\n121650K .......... .......... .......... .......... .......... 22% 1.18M 6m16s\n121700K .......... .......... .......... .......... .......... 22% 1.15M 6m16s\n121750K .......... .......... .......... .......... .......... 22% 1.27M 6m15s\n121800K .......... .......... .......... .......... .......... 22% 1.15M 6m15s\n121850K .......... .......... .......... .......... .......... 22% 1.20M 6m15s\n121900K .......... .......... .......... .......... .......... 22% 1.10M 6m15s\n121950K .......... .......... .......... .......... .......... 22% 956K 6m15s\n122000K .......... .......... .......... .......... .......... 22% 1.20M 6m15s\n122050K .......... .......... .......... .......... .......... 22% 1.17M 6m15s\n122100K .......... .......... .......... .......... .......... 22% 1.20M 6m15s\n122150K .......... .......... .......... .......... .......... 22% 1.16M 6m15s\n122200K .......... .......... .......... .......... .......... 22% 1.19M 6m15s\n122250K .......... .......... .......... .......... .......... 22% 1.20M 6m15s\n122300K .......... .......... .......... .......... .......... 23% 1.18M 6m15s\n122350K .......... .......... .......... .......... .......... 23% 915K 6m15s\n122400K .......... .......... .......... .......... .......... 23% 863K 6m15s\n122450K .......... .......... .......... .......... .......... 23% 2.04M 6m15s\n122500K .......... .......... .......... .......... .......... 23% 1.19M 6m15s\n122550K .......... .......... .......... .......... .......... 23% 1.20M 6m15s\n122600K .......... .......... .......... .......... .......... 23% 1.15M 6m15s\n122650K .......... .......... .......... .......... .......... 23% 1.19M 6m14s\n122700K .......... .......... .......... .......... .......... 23% 1.19M 6m14s\n122750K .......... .......... .......... .......... .......... 23% 934K 6m14s\n122800K .......... .......... .......... .......... .......... 23% 1.18M 6m14s\n122850K .......... .......... .......... .......... .......... 23% 1.20M 6m14s\n122900K .......... .......... .......... .......... .......... 23% 1.15M 6m14s\n122950K .......... .......... .......... .......... .......... 23% 1.14M 6m14s\n123000K .......... .......... .......... .......... .......... 23% 1.21M 6m14s\n123050K .......... .......... .......... .......... .......... 23% 1.14M 6m14s\n123100K .......... .......... .......... .......... .......... 23% 1.27M 6m14s\n123150K .......... .......... .......... .......... .......... 23% 884K 6m14s\n123200K .......... .......... .......... .......... .......... 23% 1.20M 6m14s\n123250K .......... .......... .......... .......... .......... 23% 1.23M 6m14s\n123300K .......... .......... .......... .......... .......... 23% 1.16M 6m14s\n123350K .......... .......... .......... .......... .......... 23% 1.20M 6m14s\n123400K .......... .......... .......... .......... .......... 23% 1.18M 6m14s\n123450K .......... .......... .......... .......... .......... 23% 1.18M 6m14s\n123500K .......... .......... .......... .......... .......... 23% 1.19M 6m14s\n123550K .......... .......... .......... .......... .......... 23% 919K 6m14s\n123600K .......... .......... .......... .......... .......... 23% 1.17M 6m13s\n123650K .......... .......... .......... .......... .......... 23% 1.24M 6m13s\n123700K .......... .......... .......... .......... .......... 23% 1.18M 6m13s\n123750K .......... .......... .......... .......... .......... 23% 1.18M 6m13s\n123800K .......... .......... .......... .......... .......... 23% 1.20M 6m13s\n123850K .......... .......... .......... .......... .......... 23% 1.17M 6m13s\n123900K .......... .......... .......... .......... .......... 23% 1.20M 6m13s\n123950K .......... .......... .......... .......... .......... 23% 922K 6m13s\n124000K .......... .......... .......... .......... .......... 23% 1.19M 6m13s\n124050K .......... .......... .......... .......... .......... 23% 1.16M 6m13s\n124100K .......... .......... .......... .......... .......... 23% 1.20M 6m13s\n124150K .......... .......... .......... .......... .......... 23% 1.19M 6m13s\n124200K .......... .......... .......... .......... .......... 23% 1.17M 6m13s\n124250K .......... .......... .......... .......... .......... 23% 1.16M 6m13s\n124300K .......... .......... .......... .......... .......... 23% 1.21M 6m13s\n124350K .......... .......... .......... .......... .......... 23% 909K 6m13s\n124400K .......... .......... .......... .......... .......... 23% 1.19M 6m13s\n124450K .......... .......... .......... .......... .......... 23% 1.17M 6m13s\n124500K .......... .......... .......... .......... .......... 23% 1.16M 6m12s\n124550K .......... .......... .......... .......... .......... 23% 1.25M 6m12s\n124600K .......... .......... .......... .......... .......... 23% 1.19M 6m12s\n124650K .......... .......... .......... .......... .......... 23% 1.19M 6m12s\n124700K .......... .......... .......... .......... .......... 23% 1.19M 6m12s\n124750K .......... .......... .......... .......... .......... 23% 911K 6m12s\n124800K .......... .......... .......... .......... .......... 23% 1.18M 6m12s\n124850K .......... .......... .......... .......... .......... 23% 1.21M 6m12s\n124900K .......... .......... .......... .......... .......... 23% 1.18M 6m12s\n124950K .......... .......... .......... .......... .......... 23% 200K 6m13s\n125000K .......... .......... .......... .......... .......... 23% 314M 6m12s\n125050K .......... .......... .......... .......... .......... 23% 378M 6m12s\n125100K .......... .......... .......... .......... .......... 23% 1.46M 6m12s\n125150K .......... .......... .......... .......... .......... 23% 1.14M 6m12s\n125200K .......... .......... .......... .......... .......... 23% 1.24M 6m12s\n125250K .......... .......... .......... .......... .......... 23% 246K 6m12s\n125300K .......... .......... .......... .......... .......... 23% 64.0M 6m12s\n125350K .......... .......... .......... .......... .......... 23% 76.6M 6m12s\n125400K .......... .......... .......... .......... .......... 23% 137M 6m12s\n125450K .......... .......... .......... .......... .......... 23% 1.30M 6m12s\n125500K .......... .......... .......... .......... .......... 23% 1.20M 6m12s\n125550K .......... .......... .......... .......... .......... 23% 906K 6m12s\n125600K .......... .......... .......... .......... .......... 23% 1.13M 6m12s\n125650K .......... .......... .......... .......... .......... 23% 1.21M 6m12s\n125700K .......... .......... .......... .......... .......... 23% 1.23M 6m12s\n125750K .......... .......... .......... .......... .......... 23% 1.14M 6m12s\n125800K .......... .......... .......... .......... .......... 23% 1.26M 6m11s\n125850K .......... .......... .......... .......... .......... 23% 1.19M 6m11s\n125900K .......... .......... .......... .......... .......... 23% 1.10M 6m11s\n125950K .......... .......... .......... .......... .......... 23% 960K 6m11s\n126000K .......... .......... .......... .......... .......... 23% 1.19M 6m11s\n126050K .......... .......... .......... .......... .......... 23% 1.21M 6m11s\n126100K .......... .......... .......... .......... .......... 23% 1.19M 6m11s\n126150K .......... .......... .......... .......... .......... 23% 1.19M 6m11s\n126200K .......... .......... .......... .......... .......... 23% 1.20M 6m11s\n126250K .......... .......... .......... .......... .......... 23% 1.17M 6m11s\n126300K .......... .......... .......... .......... .......... 23% 1.18M 6m11s\n126350K .......... .......... .......... .......... .......... 23% 901K 6m11s\n126400K .......... .......... .......... .......... .......... 23% 1.20M 6m11s\n126450K .......... .......... .......... .......... .......... 23% 1.19M 6m11s\n126500K .......... .......... .......... .......... .......... 23% 1.16M 6m11s\n126550K .......... .......... .......... .......... .......... 23% 1.18M 6m11s\n126600K .......... .......... .......... .......... .......... 23% 1.20M 6m11s\n126650K .......... .......... .......... .......... .......... 23% 1.20M 6m11s\n126700K .......... .......... .......... .......... .......... 23% 1.19M 6m10s\n126750K .......... .......... .......... .......... .......... 23% 911K 6m10s\n126800K .......... .......... .......... .......... .......... 23% 1.19M 6m10s\n126850K .......... .......... .......... .......... .......... 23% 1.19M 6m10s\n126900K .......... .......... .......... .......... .......... 23% 1.19M 6m10s\n126950K .......... .......... .......... .......... .......... 23% 1.19M 6m10s\n127000K .......... .......... .......... .......... .......... 23% 1.19M 6m10s\n127050K .......... .......... .......... .......... .......... 23% 1.19M 6m10s\n127100K .......... .......... .......... .......... .......... 23% 1.17M 6m10s\n127150K .......... .......... .......... .......... .......... 23% 929K 6m10s\n127200K .......... .......... .......... .......... .......... 23% 1.15M 6m10s\n127250K .......... .......... .......... .......... .......... 23% 1.19M 6m10s\n127300K .......... .......... .......... .......... .......... 23% 1.19M 6m10s\n127350K .......... .......... .......... .......... .......... 23% 1.22M 6m10s\n127400K .......... .......... .......... .......... .......... 23% 1.17M 6m10s\n127450K .......... .......... .......... .......... .......... 23% 1.02M 6m10s\n127500K .......... .......... .......... .......... .......... 23% 1.37M 6m10s\n127550K .......... .......... .......... .......... .......... 23% 921K 6m10s\n127600K .......... .......... .......... .......... .......... 24% 1.20M 6m10s\n127650K .......... .......... .......... .......... .......... 24% 1.18M 6m9s\n127700K .......... .......... .......... .......... .......... 24% 1.20M 6m9s\n127750K .......... .......... .......... .......... .......... 24% 1.19M 6m9s\n127800K .......... .......... .......... .......... .......... 24% 1.20M 6m9s\n127850K .......... .......... .......... .......... .......... 24% 1.16M 6m9s\n127900K .......... .......... .......... .......... .......... 24% 1.18M 6m9s\n127950K .......... .......... .......... .......... .......... 24% 931K 6m9s\n128000K .......... .......... .......... .......... .......... 24% 1.18M 6m9s\n128050K .......... .......... .......... .......... .......... 24% 1.16M 6m9s\n128100K .......... .......... .......... .......... .......... 24% 1.22M 6m9s\n128150K .......... .......... .......... .......... .......... 24% 1.18M 6m9s\n128200K .......... .......... .......... .......... .......... 24% 1.17M 6m9s\n128250K .......... .......... .......... .......... .......... 24% 1.18M 6m9s\n128300K .......... .......... .......... .......... .......... 24% 1.21M 6m9s\n128350K .......... .......... .......... .......... .......... 24% 892K 6m9s\n128400K .......... .......... .......... .......... .......... 24% 1.20M 6m9s\n128450K .......... .......... .......... .......... .......... 24% 1.19M 6m9s\n128500K .......... .......... .......... .......... .......... 24% 1.18M 6m9s\n128550K .......... .......... .......... .......... .......... 24% 1.20M 6m8s\n128600K .......... .......... .......... .......... .......... 24% 1.19M 6m8s\n128650K .......... .......... .......... .......... .......... 24% 1.18M 6m8s\n128700K .......... .......... .......... .......... .......... 24% 1.21M 6m8s\n128750K .......... .......... .......... .......... .......... 24% 908K 6m8s\n128800K .......... .......... .......... .......... .......... 24% 1.21M 6m8s\n128850K .......... .......... .......... .......... .......... 24% 1.16M 6m8s\n128900K .......... .......... .......... .......... .......... 24% 1.20M 6m8s\n128950K .......... .......... .......... .......... .......... 24% 1.18M 6m8s\n129000K .......... .......... .......... .......... .......... 24% 1.14M 6m8s\n129050K .......... .......... .......... .......... .......... 24% 1.26M 6m8s\n129100K .......... .......... .......... .......... .......... 24% 1.19M 6m8s\n129150K .......... .......... .......... .......... .......... 24% 908K 6m8s\n129200K .......... .......... .......... .......... .......... 24% 1.12M 6m8s\n129250K .......... .......... .......... .......... .......... 24% 1.25M 6m8s\n129300K .......... .......... .......... .......... .......... 24% 1.17M 6m8s\n129350K .......... .......... .......... .......... .......... 24% 1.16M 6m8s\n129400K .......... .......... .......... .......... .......... 24% 1.21M 6m8s\n129450K .......... .......... .......... .......... .......... 24% 1.20M 6m7s\n129500K .......... .......... .......... .......... .......... 24% 1.24M 6m7s\n129550K .......... .......... .......... .......... .......... 24% 880K 6m7s\n129600K .......... .......... .......... .......... .......... 24% 1.14M 6m7s\n129650K .......... .......... .......... .......... .......... 24% 1.28M 6m7s\n129700K .......... .......... .......... .......... .......... 24% 1.16M 6m7s\n129750K .......... .......... .......... .......... .......... 24% 1.17M 6m7s\n129800K .......... .......... .......... .......... .......... 24% 1.21M 6m7s\n129850K .......... .......... .......... .......... .......... 24% 1.20M 6m7s\n129900K .......... .......... .......... .......... .......... 24% 1.15M 6m7s\n129950K .......... .......... .......... .......... .......... 24% 916K 6m7s\n130000K .......... .......... .......... .......... .......... 24% 1.22M 6m7s\n130050K .......... .......... .......... .......... .......... 24% 1.14M 6m7s\n130100K .......... .......... .......... .......... .......... 24% 1.25M 6m7s\n130150K .......... .......... .......... .......... .......... 24% 1.17M 6m7s\n130200K .......... .......... .......... .......... .......... 24% 1.18M 6m7s\n130250K .......... .......... .......... .......... .......... 24% 1.20M 6m7s\n130300K .......... .......... .......... .......... .......... 24% 1.10M 6m7s\n130350K .......... .......... .......... .......... .......... 24% 956K 6m7s\n130400K .......... .......... .......... .......... .......... 24% 1.19M 6m6s\n130450K .......... .......... .......... .......... .......... 24% 1.20M 6m6s\n130500K .......... .......... .......... .......... .......... 24% 1.20M 6m6s\n130550K .......... .......... .......... .......... .......... 24% 1.19M 6m6s\n130600K .......... .......... .......... .......... .......... 24% 1.21M 6m6s\n130650K .......... .......... .......... .......... .......... 24% 1.17M 6m6s\n130700K .......... .......... .......... .......... .......... 24% 1.17M 6m6s\n130750K .......... .......... .......... .......... .......... 24% 906K 6m6s\n130800K .......... .......... .......... .......... .......... 24% 1.21M 6m6s\n130850K .......... .......... .......... .......... .......... 24% 1.15M 6m6s\n130900K .......... .......... .......... .......... .......... 24% 1.20M 6m6s\n130950K .......... .......... .......... .......... .......... 24% 1.20M 6m6s\n131000K .......... .......... .......... .......... .......... 24% 1.17M 6m6s\n131050K .......... .......... .......... .......... .......... 24% 1.21M 6m6s\n131100K .......... .......... .......... .......... .......... 24% 1.20M 6m6s\n131150K .......... .......... .......... .......... .......... 24% 901K 6m6s\n131200K .......... .......... .......... .......... .......... 24% 1.20M 6m6s\n131250K .......... .......... .......... .......... .......... 24% 1.17M 6m6s\n131300K .......... .......... .......... .......... .......... 24% 1.21M 6m5s\n131350K .......... .......... .......... .......... .......... 24% 1.19M 6m5s\n131400K .......... .......... .......... .......... .......... 24% 1.17M 6m5s\n131450K .......... .......... .......... .......... .......... 24% 1.20M 6m5s\n131500K .......... .......... .......... .......... .......... 24% 1.16M 6m5s\n131550K .......... .......... .......... .......... .......... 24% 907K 6m5s\n131600K .......... .......... .......... .......... .......... 24% 1.16M 6m5s\n131650K .......... .......... .......... .......... .......... 24% 1.21M 6m5s\n131700K .......... .......... .......... .......... .......... 24% 1.20M 6m5s\n131750K .......... .......... .......... .......... .......... 24% 1.19M 6m5s\n131800K .......... .......... .......... .......... .......... 24% 1.19M 6m5s\n131850K .......... .......... .......... .......... .......... 24% 1.15M 6m5s\n131900K .......... .......... .......... .......... .......... 24% 1.21M 6m5s\n131950K .......... .......... .......... .......... .......... 24% 925K 6m5s\n132000K .......... .......... .......... .......... .......... 24% 1.16M 6m5s\n132050K .......... .......... .......... .......... .......... 24% 1.24M 6m5s\n132100K .......... .......... .......... .......... .......... 24% 1.18M 6m5s\n132150K .......... .......... .......... .......... .......... 24% 1.18M 6m5s\n132200K .......... .......... .......... .......... .......... 24% 1.13M 6m4s\n132250K .......... .......... .......... .......... .......... 24% 1.20M 6m4s\n132300K .......... .......... .......... .......... .......... 24% 1.25M 6m4s\n132350K .......... .......... .......... .......... .......... 24% 900K 6m4s\n132400K .......... .......... .......... .......... .......... 24% 1.23M 6m4s\n132450K .......... .......... .......... .......... .......... 24% 1.17M 6m4s\n132500K .......... .......... .......... .......... .......... 24% 1.14M 6m4s\n132550K .......... .......... .......... .......... .......... 24% 1.25M 6m4s\n132600K .......... .......... .......... .......... .......... 24% 1.00M 6m4s\n132650K .......... .......... .......... .......... .......... 24% 1.13M 6m4s\n132700K .......... .......... .......... .......... .......... 24% 1.07M 6m4s\n132750K .......... .......... .......... .......... .......... 24% 703K 6m4s\n132800K .......... .......... .......... .......... .......... 24% 1.19M 6m4s\n132850K .......... .......... .......... .......... .......... 24% 1.12M 6m4s\n132900K .......... .......... .......... .......... .......... 24% 1.03M 6m4s\n132950K .......... .......... .......... .......... .......... 25% 1.23M 6m4s\n133000K .......... .......... .......... .......... .......... 25% 1.17M 6m4s\n133050K .......... .......... .......... .......... .......... 25% 1.09M 6m4s\n133100K .......... .......... .......... .......... .......... 25% 921K 6m4s\n133150K .......... .......... .......... .......... .......... 25% 849K 6m4s\n133200K .......... .......... .......... .......... .......... 25% 1.33M 6m4s\n133250K .......... .......... .......... .......... .......... 25% 1.02M 6m4s\n133300K .......... .......... .......... .......... .......... 25% 1018K 6m4s\n133350K .......... .......... .......... .......... .......... 25% 1.22M 6m3s\n133400K .......... .......... .......... .......... .......... 25% 1.18M 6m3s\n133450K .......... .......... .......... .......... .......... 25% 1.00M 6m3s\n133500K .......... .......... .......... .......... .......... 25% 1.28M 6m3s\n133550K .......... .......... .......... .......... .......... 25% 827K 6m3s\n133600K .......... .......... .......... .......... .......... 25% 1.22M 6m3s\n133650K .......... .......... .......... .......... .......... 25% 1.08M 6m3s\n133700K .......... .......... .......... .......... .......... 25% 951K 6m3s\n133750K .......... .......... .......... .......... .......... 25% 1.16M 6m3s\n133800K .......... .......... .......... .......... .......... 25% 1.06M 6m3s\n133850K .......... .......... .......... .......... .......... 25% 1.19M 6m3s\n133900K .......... .......... .......... .......... .......... 25% 1.18M 6m3s\n133950K .......... .......... .......... .......... .......... 25% 786K 6m3s\n134000K .......... .......... .......... .......... .......... 25% 1.11M 6m3s\n134050K .......... .......... .......... .......... .......... 25% 1.17M 6m3s\n134100K .......... .......... .......... .......... .......... 25% 1.20M 6m3s\n134150K .......... .......... .......... .......... .......... 25% 1.20M 6m3s\n134200K .......... .......... .......... .......... .......... 25% 1.20M 6m3s\n134250K .......... .......... .......... .......... .......... 25% 1.16M 6m3s\n134300K .......... .......... .......... .......... .......... 25% 1.17M 6m3s\n134350K .......... .......... .......... .......... .......... 25% 939K 6m3s\n134400K .......... .......... .......... .......... .......... 25% 1.16M 6m2s\n134450K .......... .......... .......... .......... .......... 25% 1.18M 6m2s\n134500K .......... .......... .......... .......... .......... 25% 1.20M 6m2s\n134550K .......... .......... .......... .......... .......... 25% 1.19M 6m2s\n134600K .......... .......... .......... .......... .......... 25% 1.16M 6m2s\n134650K .......... .......... .......... .......... .......... 25% 1.20M 6m2s\n134700K .......... .......... .......... .......... .......... 25% 1.17M 6m2s\n134750K .......... .......... .......... .......... .......... 25% 911K 6m2s\n134800K .......... .......... .......... .......... .......... 25% 1.13M 6m2s\n134850K .......... .......... .......... .......... .......... 25% 1.24M 6m2s\n134900K .......... .......... .......... .......... .......... 25% 1.21M 6m2s\n134950K .......... .......... .......... .......... .......... 25% 1.15M 6m2s\n135000K .......... .......... .......... .......... .......... 25% 1.22M 6m2s\n135050K .......... .......... .......... .......... .......... 25% 1.12M 6m2s\n135100K .......... .......... .......... .......... .......... 25% 1.21M 6m2s\n135150K .......... .......... .......... .......... .......... 25% 567K 6m2s\n135200K .......... .......... .......... .......... .......... 25% 5.34M 6m2s\n135250K .......... .......... .......... .......... .......... 25% 1.27M 6m2s\n135300K .......... .......... .......... .......... .......... 25% 1.21M 6m1s\n135350K .......... .......... .......... .......... .......... 25% 197K 6m2s\n135400K .......... .......... .......... .......... .......... 25% 228M 6m2s\n135450K .......... .......... .......... .......... .......... 25% 25.9M 6m2s\n135500K .......... .......... .......... .......... .......... 25% 286M 6m2s\n135550K .......... .......... .......... .......... .......... 25% 3.58M 6m1s\n135600K .......... .......... .......... .......... .......... 25% 17.5M 6m1s\n135650K .......... .......... .......... .......... .......... 25% 176K 6m2s\n135700K .......... .......... .......... .......... .......... 25% 122M 6m2s\n135750K .......... .......... .......... .......... .......... 25% 100M 6m2s\n135800K .......... .......... .......... .......... .......... 25% 319K 6m2s\n135850K .......... .......... .......... .......... .......... 25% 198M 6m2s\n135900K .......... .......... .......... .......... .......... 25% 327M 6m1s\n135950K .......... .......... .......... .......... .......... 25% 92.7M 6m1s\n136000K .......... .......... .......... .......... .......... 25% 2.60M 6m1s\n136050K .......... .......... .......... .......... .......... 25% 2.55M 6m1s\n136100K .......... .......... .......... .......... .......... 25% 1.17M 6m1s\n136150K .......... .......... .......... .......... .......... 25% 1.17M 6m1s\n136200K .......... .......... .......... .......... .......... 25% 1.20M 6m1s\n136250K .......... .......... .......... .......... .......... 25% 1.19M 6m1s\n136300K .......... .......... .......... .......... .......... 25% 1.19M 6m1s\n136350K .......... .......... .......... .......... .......... 25% 902K 6m1s\n136400K .......... .......... .......... .......... .......... 25% 1.21M 6m1s\n136450K .......... .......... .......... .......... .......... 25% 1.17M 6m1s\n136500K .......... .......... .......... .......... .......... 25% 1.21M 6m1s\n136550K .......... .......... .......... .......... .......... 25% 1.20M 6m0s\n136600K .......... .......... .......... .......... .......... 25% 1.17M 6m0s\n136650K .......... .......... .......... .......... .......... 25% 1.14M 6m0s\n136700K .......... .......... .......... .......... .......... 25% 1.25M 6m0s\n136750K .......... .......... .......... .......... .......... 25% 927K 6m0s\n136800K .......... .......... .......... .......... .......... 25% 1.17M 6m0s\n136850K .......... .......... .......... .......... .......... 25% 1.22M 6m0s\n136900K .......... .......... .......... .......... .......... 25% 1.17M 6m0s\n136950K .......... .......... .......... .......... .......... 25% 1.20M 6m0s\n137000K .......... .......... .......... .......... .......... 25% 1.13M 6m0s\n137050K .......... .......... .......... .......... .......... 25% 1.24M 6m0s\n137100K .......... .......... .......... .......... .......... 25% 1.19M 6m0s\n137150K .......... .......... .......... .......... .......... 25% 870K 6m0s\n137200K .......... .......... .......... .......... .......... 25% 1.23M 6m0s\n137250K .......... .......... .......... .......... .......... 25% 1.19M 6m0s\n137300K .......... .......... .......... .......... .......... 25% 1.22M 6m0s\n137350K .......... .......... .......... .......... .......... 25% 1.16M 6m0s\n137400K .......... .......... .......... .......... .......... 25% 1.19M 6m0s\n137450K .......... .......... .......... .......... .......... 25% 1.22M 5m59s\n137500K .......... .......... .......... .......... .......... 25% 1.17M 5m59s\n137550K .......... .......... .......... .......... .......... 25% 921K 5m59s\n137600K .......... .......... .......... .......... .......... 25% 1.16M 5m59s\n137650K .......... .......... .......... .......... .......... 25% 167K 6m0s\n137700K .......... .......... .......... .......... .......... 25% 112M 6m0s\n137750K .......... .......... .......... .......... .......... 25% 97.5M 6m0s\n137800K .......... .......... .......... .......... .......... 25% 493K 6m0s\n137850K .......... .......... .......... .......... .......... 25% 122M 6m0s\n137900K .......... .......... .......... .......... .......... 25% 425M 5m59s\n137950K .......... .......... .......... .......... .......... 25% 724K 5m59s\n138000K .......... .......... .......... .......... .......... 25% 1.15M 5m59s\n138050K .......... .......... .......... .......... .......... 25% 1.22M 5m59s\n138100K .......... .......... .......... .......... .......... 25% 1.17M 5m59s\n138150K .......... .......... .......... .......... .......... 25% 1.20M 5m59s\n138200K .......... .......... .......... .......... .......... 25% 1.19M 5m59s\n138250K .......... .......... .......... .......... .......... 26% 1.20M 5m59s\n138300K .......... .......... .......... .......... .......... 26% 1.17M 5m59s\n138350K .......... .......... .......... .......... .......... 26% 931K 5m59s\n138400K .......... .......... .......... .......... .......... 26% 1.15M 5m59s\n138450K .......... .......... .......... .......... .......... 26% 1.20M 5m59s\n138500K .......... .......... .......... .......... .......... 26% 1.19M 5m59s\n138550K .......... .......... .......... .......... .......... 26% 1.14M 5m59s\n138600K .......... .......... .......... .......... .......... 26% 1.24M 5m59s\n138650K .......... .......... .......... .......... .......... 26% 1.19M 5m59s\n138700K .......... .......... .......... .......... .......... 26% 1.17M 5m59s\n138750K .......... .......... .......... .......... .......... 26% 926K 5m59s\n138800K .......... .......... .......... .......... .......... 26% 1.16M 5m59s\n138850K .......... .......... .......... .......... .......... 26% 1.22M 5m58s\n138900K .......... .......... .......... .......... .......... 26% 1.17M 5m58s\n138950K .......... .......... .......... .......... .......... 26% 1.14M 5m58s\n139000K .......... .......... .......... .......... .......... 26% 1.28M 5m58s\n139050K .......... .......... .......... .......... .......... 26% 1.17M 5m58s\n139100K .......... .......... .......... .......... .......... 26% 1.19M 5m58s\n139150K .......... .......... .......... .......... .......... 26% 899K 5m58s\n139200K .......... .......... .......... .......... .......... 26% 191K 5m59s\n139250K .......... .......... .......... .......... .......... 26% 116M 5m59s\n139300K .......... .......... .......... .......... .......... 26% 124M 5m58s\n139350K .......... .......... .......... .......... .......... 26% 1.46M 5m58s\n139400K .......... .......... .......... .......... .......... 26% 49.9M 5m58s\n139450K .......... .......... .......... .......... .......... 26% 63.9M 5m58s\n139500K .......... .......... .......... .......... .......... 26% 175K 5m59s\n139550K .......... .......... .......... .......... .......... 26% 2.00M 5m58s\n139600K .......... .......... .......... .......... .......... 26% 2.86M 5m58s\n139650K .......... .......... .......... .......... .......... 26% 130M 5m58s\n139700K .......... .......... .......... .......... .......... 26% 140M 5m58s\n139750K .......... .......... .......... .......... .......... 26% 82.6M 5m58s\n139800K .......... .......... .......... .......... .......... 26% 2.13M 5m58s\n139850K .......... .......... .......... .......... .......... 26% 1.19M 5m58s\n139900K .......... .......... .......... .......... .......... 26% 1.16M 5m58s\n139950K .......... .......... .......... .......... .......... 26% 935K 5m58s\n140000K .......... .......... .......... .......... .......... 26% 1.18M 5m58s\n140050K .......... .......... .......... .......... .......... 26% 1.13M 5m57s\n140100K .......... .......... .......... .......... .......... 26% 1.25M 5m57s\n140150K .......... .......... .......... .......... .......... 26% 1.17M 5m57s\n140200K .......... .......... .......... .......... .......... 26% 1.20M 5m57s\n140250K .......... .......... .......... .......... .......... 26% 1.20M 5m57s\n140300K .......... .......... .......... .......... .......... 26% 170K 5m58s\n140350K .......... .......... .......... .......... .......... 26% 170M 5m58s\n140400K .......... .......... .......... .......... .......... 26% 261M 5m58s\n140450K .......... .......... .......... .......... .......... 26% 1.55M 5m57s\n140500K .......... .......... .......... .......... .......... 26% 120M 5m57s\n140550K .......... .......... .......... .......... .......... 26% 1.49M 5m57s\n140600K .......... .......... .......... .......... .......... 26% 1.18M 5m57s\n140650K .......... .......... .......... .......... .......... 26% 1.21M 5m57s\n140700K .......... .......... .......... .......... .......... 26% 1.21M 5m57s\n140750K .......... .......... .......... .......... .......... 26% 915K 5m57s\n140800K .......... .......... .......... .......... .......... 26% 1.21M 5m57s\n140850K .......... .......... .......... .......... .......... 26% 1.16M 5m57s\n140900K .......... .......... .......... .......... .......... 26% 1.13M 5m57s\n140950K .......... .......... .......... .......... .......... 26% 1.21M 5m57s\n141000K .......... .......... .......... .......... .......... 26% 1.25M 5m57s\n141050K .......... .......... .......... .......... .......... 26% 1.18M 5m57s\n141100K .......... .......... .......... .......... .......... 26% 1.19M 5m57s\n141150K .......... .......... .......... .......... .......... 26% 898K 5m57s\n141200K .......... .......... .......... .......... .......... 26% 1.20M 5m57s\n141250K .......... .......... .......... .......... .......... 26% 204K 5m57s\n141300K .......... .......... .......... .......... .......... 26% 15.7M 5m57s\n141350K .......... .......... .......... .......... .......... 26% 20.8M 5m57s\n141400K .......... .......... .......... .......... .......... 26% 26.0M 5m57s\n141450K .......... .......... .......... .......... .......... 26% 9.34M 5m56s\n141500K .......... .......... .......... .......... .......... 26% 68.8M 5m56s\n141550K .......... .......... .......... .......... .......... 26% 783K 5m56s\n141600K .......... .......... .......... .......... .......... 26% 1.29M 5m56s\n141650K .......... .......... .......... .......... .......... 26% 1.18M 5m56s\n141700K .......... .......... .......... .......... .......... 26% 1.23M 5m56s\n141750K .......... .......... .......... .......... .......... 26% 1.16M 5m56s\n141800K .......... .......... .......... .......... .......... 26% 1.19M 5m56s\n141850K .......... .......... .......... .......... .......... 26% 1.21M 5m56s\n141900K .......... .......... .......... .......... .......... 26% 1.15M 5m56s\n141950K .......... .......... .......... .......... .......... 26% 934K 5m56s\n142000K .......... .......... .......... .......... .......... 26% 1.16M 5m56s\n142050K .......... .......... .......... .......... .......... 26% 1.22M 5m56s\n142100K .......... .......... .......... .......... .......... 26% 1.18M 5m56s\n142150K .......... .......... .......... .......... .......... 26% 1.12M 5m56s\n142200K .......... .......... .......... .......... .......... 26% 1.20M 5m56s\n142250K .......... .......... .......... .......... .......... 26% 1.26M 5m55s\n142300K .......... .......... .......... .......... .......... 26% 1.20M 5m55s\n142350K .......... .......... .......... .......... .......... 26% 893K 5m55s\n142400K .......... .......... .......... .......... .......... 26% 1.16M 5m55s\n142450K .......... .......... .......... .......... .......... 26% 1.22M 5m55s\n142500K .......... .......... .......... .......... .......... 26% 1.20M 5m55s\n142550K .......... .......... .......... .......... .......... 26% 197K 5m56s\n142600K .......... .......... .......... .......... .......... 26% 69.2M 5m56s\n142650K .......... .......... .......... .......... .......... 26% 150M 5m55s\n142700K .......... .......... .......... .......... .......... 26% 125M 5m55s\n142750K .......... .......... .......... .......... .......... 26% 43.8M 5m55s\n142800K .......... .......... .......... .......... .......... 26% 635K 5m55s\n142850K .......... .......... .......... .......... .......... 26% 1.16M 5m55s\n142900K .......... .......... .......... .......... .......... 26% 1.24M 5m55s\n142950K .......... .......... .......... .......... .......... 26% 1.16M 5m55s\n143000K .......... .......... .......... .......... .......... 26% 1.21M 5m55s\n143050K .......... .......... .......... .......... .......... 26% 1.17M 5m55s\n143100K .......... .......... .......... .......... .......... 26% 1.18M 5m55s\n143150K .......... .......... .......... .......... .......... 26% 907K 5m55s\n143200K .......... .......... .......... .......... .......... 26% 1.20M 5m55s\n143250K .......... .......... .......... .......... .......... 26% 1.21M 5m55s\n143300K .......... .......... .......... .......... .......... 26% 1.19M 5m55s\n143350K .......... .......... .......... .......... .......... 26% 1.14M 5m54s\n143400K .......... .......... .......... .......... .......... 26% 1.25M 5m54s\n143450K .......... .......... .......... .......... .......... 26% 1.17M 5m54s\n143500K .......... .......... .......... .......... .......... 26% 1.16M 5m54s\n143550K .......... .......... .......... .......... .......... 26% 892K 5m54s\n143600K .......... .......... .......... .......... .......... 27% 1.19M 5m54s\n143650K .......... .......... .......... .......... .......... 27% 1.22M 5m54s\n143700K .......... .......... .......... .......... .......... 27% 1.19M 5m54s\n143750K .......... .......... .......... .......... .......... 27% 1.18M 5m54s\n143800K .......... .......... .......... .......... .......... 27% 1.20M 5m54s\n143850K .......... .......... .......... .......... .......... 27% 1.16M 5m54s\n143900K .......... .......... .......... .......... .......... 27% 1.22M 5m54s\n143950K .......... .......... .......... .......... .......... 27% 926K 5m54s\n144000K .......... .......... .......... .......... .......... 27% 1.14M 5m54s\n144050K .......... .......... .......... .......... .......... 27% 1.22M 5m54s\n144100K .......... .......... .......... .......... .......... 27% 1.19M 5m54s\n144150K .......... .......... .......... .......... .......... 27% 1.18M 5m54s\n144200K .......... .......... .......... .......... .......... 27% 1.19M 5m54s\n144250K .......... .......... .......... .......... .......... 27% 1.19M 5m54s\n144300K .......... .......... .......... .......... .......... 27% 1.19M 5m53s\n144350K .......... .......... .......... .......... .......... 27% 896K 5m53s\n144400K .......... .......... .......... .......... .......... 27% 1.18M 5m53s\n144450K .......... .......... .......... .......... .......... 27% 1.19M 5m53s\n144500K .......... .......... .......... .......... .......... 27% 1.20M 5m53s\n144550K .......... .......... .......... .......... .......... 27% 1.17M 5m53s\n144600K .......... .......... .......... .......... .......... 27% 1.19M 5m53s\n144650K .......... .......... .......... .......... .......... 27% 1.20M 5m53s\n144700K .......... .......... .......... .......... .......... 27% 1.16M 5m53s\n144750K .......... .......... .......... .......... .......... 27% 936K 5m53s\n144800K .......... .......... .......... .......... .......... 27% 1.17M 5m53s\n144850K .......... .......... .......... .......... .......... 27% 1.23M 5m53s\n144900K .......... .......... .......... .......... .......... 27% 1.15M 5m53s\n144950K .......... .......... .......... .......... .......... 27% 1.18M 5m53s\n145000K .......... .......... .......... .......... .......... 27% 1.19M 5m53s\n145050K .......... .......... .......... .......... .......... 27% 908K 5m53s\n145100K .......... .......... .......... .......... .......... 27% 1.18M 5m53s\n145150K .......... .......... .......... .......... .......... 27% 722K 5m53s\n145200K .......... .......... .......... .......... .......... 27% 1.03M 5m53s\n145250K .......... .......... .......... .......... .......... 27% 975K 5m53s\n145300K .......... .......... .......... .......... .......... 27% 996K 5m53s\n145350K .......... .......... .......... .......... .......... 27% 936K 5m53s\n145400K .......... .......... .......... .......... .......... 27% 1.07M 5m52s\n145450K .......... .......... .......... .......... .......... 27% 958K 5m52s\n145500K .......... .......... .......... .......... .......... 27% 1018K 5m52s\n145550K .......... .......... .......... .......... .......... 27% 863K 5m52s\n145600K .......... .......... .......... .......... .......... 27% 1.03M 5m52s\n145650K .......... .......... .......... .......... .......... 27% 810K 5m52s\n145700K .......... .......... .......... .......... .......... 27% 1.27M 5m52s\n145750K .......... .......... .......... .......... .......... 27% 1.11M 5m52s\n145800K .......... .......... .......... .......... .......... 27% 734K 5m52s\n145850K .......... .......... .......... .......... .......... 27% 770K 5m52s\n145900K .......... .......... .......... .......... .......... 27% 1007K 5m52s\n145950K .......... .......... .......... .......... .......... 27% 769K 5m52s\n146000K .......... .......... .......... .......... .......... 27% 916K 5m52s\n146050K .......... .......... .......... .......... .......... 27% 1.13M 5m52s\n146100K .......... .......... .......... .......... .......... 27% 943K 5m52s\n146150K .......... .......... .......... .......... .......... 27% 818K 5m52s\n146200K .......... .......... .......... .......... .......... 27% 1.06M 5m52s\n146250K .......... .......... .......... .......... .......... 27% 678K 5m52s\n146300K .......... .......... .......... .......... .......... 27% 1.12M 5m52s\n146350K .......... .......... .......... .......... .......... 27% 839K 5m52s\n146400K .......... .......... .......... .......... .......... 27% 1.17M 5m52s\n146450K .......... .......... .......... .......... .......... 27% 1.16M 5m52s\n146500K .......... .......... .......... .......... .......... 27% 1.15M 5m52s\n146550K .......... .......... .......... .......... .......... 27% 1.21M 5m52s\n146600K .......... .......... .......... .......... .......... 27% 1.16M 5m52s\n146650K .......... .......... .......... .......... .......... 27% 1.15M 5m52s\n146700K .......... .......... .......... .......... .......... 27% 1.21M 5m52s\n146750K .......... .......... .......... .......... .......... 27% 890K 5m52s\n146800K .......... .......... .......... .......... .......... 27% 1.23M 5m52s\n146850K .......... .......... .......... .......... .......... 27% 1.18M 5m52s\n146900K .......... .......... .......... .......... .......... 27% 1.19M 5m51s\n146950K .......... .......... .......... .......... .......... 27% 1.20M 5m51s\n147000K .......... .......... .......... .......... .......... 27% 1.17M 5m51s\n147050K .......... .......... .......... .......... .......... 27% 1.19M 5m51s\n147100K .......... .......... .......... .......... .......... 27% 1.18M 5m51s\n147150K .......... .......... .......... .......... .......... 27% 931K 5m51s\n147200K .......... .......... .......... .......... .......... 27% 1.17M 5m51s\n147250K .......... .......... .......... .......... .......... 27% 1.18M 5m51s\n147300K .......... .......... .......... .......... .......... 27% 1.18M 5m51s\n147350K .......... .......... .......... .......... .......... 27% 1.19M 5m51s\n147400K .......... .......... .......... .......... .......... 27% 1.20M 5m51s\n147450K .......... .......... .......... .......... .......... 27% 1.19M 5m51s\n147500K .......... .......... .......... .......... .......... 27% 1.18M 5m51s\n147550K .......... .......... .......... .......... .......... 27% 910K 5m51s\n147600K .......... .......... .......... .......... .......... 27% 1.17M 5m51s\n147650K .......... .......... .......... .......... .......... 27% 1.19M 5m51s\n147700K .......... .......... .......... .......... .......... 27% 1.17M 5m51s\n147750K .......... .......... .......... .......... .......... 27% 1.20M 5m51s\n147800K .......... .......... .......... .......... .......... 27% 1.19M 5m51s\n147850K .......... .......... .......... .......... .......... 27% 1.19M 5m50s\n147900K .......... .......... .......... .......... .......... 27% 1.18M 5m50s\n147950K .......... .......... .......... .......... .......... 27% 921K 5m50s\n148000K .......... .......... .......... .......... .......... 27% 1.18M 5m50s\n148050K .......... .......... .......... .......... .......... 27% 1.18M 5m50s\n148100K .......... .......... .......... .......... .......... 27% 1.17M 5m50s\n148150K .......... .......... .......... .......... .......... 27% 1.20M 5m50s\n148200K .......... .......... .......... .......... .......... 27% 1.01M 5m50s\n148250K .......... .......... .......... .......... .......... 27% 1.13M 5m50s\n148300K .......... .......... .......... .......... .......... 27% 1.14M 5m50s\n148350K .......... .......... .......... .......... .......... 27% 905K 5m50s\n148400K .......... .......... .......... .......... .......... 27% 1.18M 5m50s\n148450K .......... .......... .......... .......... .......... 27% 969K 5m50s\n148500K .......... .......... .......... .......... .......... 27% 1.29M 5m50s\n148550K .......... .......... .......... .......... .......... 27% 878K 5m50s\n148600K .......... .......... .......... .......... .......... 27% 982K 5m50s\n148650K .......... .......... .......... .......... .......... 27% 1.05M 5m50s\n148700K .......... .......... .......... .......... .......... 27% 1.20M 5m50s\n148750K .......... .......... .......... .......... .......... 27% 878K 5m50s\n148800K .......... .......... .......... .......... .......... 27% 1.11M 5m50s\n148850K .......... .......... .......... .......... .......... 27% 1.25M 5m50s\n148900K .......... .......... .......... .......... .......... 28% 1.09M 5m50s\n148950K .......... .......... .......... .......... .......... 28% 1.27M 5m49s\n149000K .......... .......... .......... .......... .......... 28% 1.16M 5m49s\n149050K .......... .......... .......... .......... .......... 28% 1.19M 5m49s\n149100K .......... .......... .......... .......... .......... 28% 1.19M 5m49s\n149150K .......... .......... .......... .......... .......... 28% 934K 5m49s\n149200K .......... .......... .......... .......... .......... 28% 1.16M 5m49s\n149250K .......... .......... .......... .......... .......... 28% 1.14M 5m49s\n149300K .......... .......... .......... .......... .......... 28% 1.19M 5m49s\n149350K .......... .......... .......... .......... .......... 28% 1.21M 5m49s\n149400K .......... .......... .......... .......... .......... 28% 1.21M 5m49s\n149450K .......... .......... .......... .......... .......... 28% 1.16M 5m49s\n149500K .......... .......... .......... .......... .......... 28% 1.19M 5m49s\n149550K .......... .......... .......... .......... .......... 28% 931K 5m49s\n149600K .......... .......... .......... .......... .......... 28% 1.18M 5m49s\n149650K .......... .......... .......... .......... .......... 28% 1.18M 5m49s\n149700K .......... .......... .......... .......... .......... 28% 1.19M 5m49s\n149750K .......... .......... .......... .......... .......... 28% 1.20M 5m49s\n149800K .......... .......... .......... .......... .......... 28% 1.19M 5m49s\n149850K .......... .......... .......... .......... .......... 28% 1.19M 5m48s\n149900K .......... .......... .......... .......... .......... 28% 1.20M 5m48s\n149950K .......... .......... .......... .......... .......... 28% 883K 5m48s\n150000K .......... .......... .......... .......... .......... 28% 1.15M 5m48s\n150050K .......... .......... .......... .......... .......... 28% 1.22M 5m48s\n150100K .......... .......... .......... .......... .......... 28% 160K 5m49s\n150150K .......... .......... .......... .......... .......... 28% 58.9M 5m49s\n150200K .......... .......... .......... .......... .......... 28% 122M 5m49s\n150250K .......... .......... .......... .......... .......... 28% 1.49M 5m49s\n150300K .......... .......... .......... .......... .......... 28% 73.5M 5m48s\n150350K .......... .......... .......... .......... .......... 28% 1.60M 5m48s\n150400K .......... .......... .......... .......... .......... 28% 1.22M 5m48s\n150450K .......... .......... .......... .......... .......... 28% 1.14M 5m48s\n150500K .......... .......... .......... .......... .......... 28% 1.24M 5m48s\n150550K .......... .......... .......... .......... .......... 28% 1.22M 5m48s\n150600K .......... .......... .......... .......... .......... 28% 1.18M 5m48s\n150650K .......... .......... .......... .......... .......... 28% 1.22M 5m48s\n150700K .......... .......... .......... .......... .......... 28% 1.14M 5m48s\n150750K .......... .......... .......... .......... .......... 28% 904K 5m48s\n150800K .......... .......... .......... .......... .......... 28% 1.14M 5m48s\n150850K .......... .......... .......... .......... .......... 28% 1.22M 5m48s\n150900K .......... .......... .......... .......... .......... 28% 196K 5m48s\n150950K .......... .......... .......... .......... .......... 28% 77.7M 5m48s\n151000K .......... .......... .......... .......... .......... 28% 174M 5m48s\n151050K .......... .......... .......... .......... .......... 28% 1.49M 5m48s\n151100K .......... .......... .......... .......... .......... 28% 77.8M 5m48s\n151150K .......... .......... .......... .......... .......... 28% 162K 5m48s\n151200K .......... .......... .......... .......... .......... 28% 3.09M 5m48s\n151250K .......... .......... .......... .......... .......... 28% 6.24M 5m48s\n151300K .......... .......... .......... .......... .......... 28% 64.5M 5m48s\n151350K .......... .......... .......... .......... .......... 28% 139M 5m48s\n151400K .......... .......... .......... .......... .......... 28% 140M 5m48s\n151450K .......... .......... .......... .......... .......... 28% 2.71M 5m47s\n151500K .......... .......... .......... .......... .......... 28% 1.16M 5m47s\n151550K .......... .......... .......... .......... .......... 28% 919K 5m47s\n151600K .......... .......... .......... .......... .......... 28% 1.19M 5m47s\n151650K .......... .......... .......... .......... .......... 28% 1.13M 5m47s\n151700K .......... .......... .......... .......... .......... 28% 1.26M 5m47s\n151750K .......... .......... .......... .......... .......... 28% 1.19M 5m47s\n151800K .......... .......... .......... .......... .......... 28% 1.22M 5m47s\n151850K .......... .......... .......... .......... .......... 28% 1.19M 5m47s\n151900K .......... .......... .......... .......... .......... 28% 1020K 5m47s\n151950K .......... .......... .......... .......... .......... 28% 1005K 5m47s\n152000K .......... .......... .......... .......... .......... 28% 1.24M 5m47s\n152050K .......... .......... .......... .......... .......... 28% 1.18M 5m47s\n152100K .......... .......... .......... .......... .......... 28% 1.17M 5m47s\n152150K .......... .......... .......... .......... .......... 28% 1.15M 5m47s\n152200K .......... .......... .......... .......... .......... 28% 1.14M 5m47s\n152250K .......... .......... .......... .......... .......... 28% 1.29M 5m47s\n152300K .......... .......... .......... .......... .......... 28% 1.19M 5m47s\n152350K .......... .......... .......... .......... .......... 28% 916K 5m47s\n152400K .......... .......... .......... .......... .......... 28% 1.18M 5m46s\n152450K .......... .......... .......... .......... .......... 28% 1.16M 5m46s\n152500K .......... .......... .......... .......... .......... 28% 1.21M 5m46s\n152550K .......... .......... .......... .......... .......... 28% 1.21M 5m46s\n152600K .......... .......... .......... .......... .......... 28% 1.16M 5m46s\n152650K .......... .......... .......... .......... .......... 28% 1.20M 5m46s\n152700K .......... .......... .......... .......... .......... 28% 1.18M 5m46s\n152750K .......... .......... .......... .......... .......... 28% 939K 5m46s\n152800K .......... .......... .......... .......... .......... 28% 1.18M 5m46s\n152850K .......... .......... .......... .......... .......... 28% 1.09M 5m46s\n152900K .......... .......... .......... .......... .......... 28% 1.32M 5m46s\n152950K .......... .......... .......... .......... .......... 28% 1.18M 5m46s\n153000K .......... .......... .......... .......... .......... 28% 1.18M 5m46s\n153050K .......... .......... .......... .......... .......... 28% 1.09M 5m46s\n153100K .......... .......... .......... .......... .......... 28% 1.31M 5m46s\n153150K .......... .......... .......... .......... .......... 28% 892K 5m46s\n153200K .......... .......... .......... .......... .......... 28% 1.18M 5m46s\n153250K .......... .......... .......... .......... .......... 28% 1.19M 5m46s\n153300K .......... .......... .......... .......... .......... 28% 1.20M 5m46s\n153350K .......... .......... .......... .......... .......... 28% 1.15M 5m45s\n153400K .......... .......... .......... .......... .......... 28% 1.23M 5m45s\n153450K .......... .......... .......... .......... .......... 28% 1.19M 5m45s\n153500K .......... .......... .......... .......... .......... 28% 1.19M 5m45s\n153550K .......... .......... .......... .......... .......... 28% 898K 5m45s\n153600K .......... .......... .......... .......... .......... 28% 1.20M 5m45s\n153650K .......... .......... .......... .......... .......... 28% 1.11M 5m45s\n153700K .......... .......... .......... .......... .......... 28% 1.27M 5m45s\n153750K .......... .......... .......... .......... .......... 28% 1.20M 5m45s\n153800K .......... .......... .......... .......... .......... 28% 1.16M 5m45s\n153850K .......... .......... .......... .......... .......... 28% 1.13M 5m45s\n153900K .......... .......... .......... .......... .......... 28% 1.30M 5m45s\n153950K .......... .......... .......... .......... .......... 28% 880K 5m45s\n154000K .......... .......... .......... .......... .......... 28% 1.20M 5m45s\n154050K .......... .......... .......... .......... .......... 28% 1.16M 5m45s\n154100K .......... .......... .......... .......... .......... 28% 1.18M 5m45s\n154150K .......... .......... .......... .......... .......... 28% 1.21M 5m45s\n154200K .......... .......... .......... .......... .......... 29% 1.21M 5m45s\n154250K .......... .......... .......... .......... .......... 29% 1.17M 5m44s\n154300K .......... .......... .......... .......... .......... 29% 1.20M 5m44s\n154350K .......... .......... .......... .......... .......... 29% 921K 5m44s\n154400K .......... .......... .......... .......... .......... 29% 1.14M 5m44s\n154450K .......... .......... .......... .......... .......... 29% 1.23M 5m44s\n154500K .......... .......... .......... .......... .......... 29% 1.21M 5m44s\n154550K .......... .......... .......... .......... .......... 29% 184K 5m45s\n154600K .......... .......... .......... .......... .......... 29% 132M 5m45s\n154650K .......... .......... .......... .......... .......... 29% 87.1M 5m44s\n154700K .......... .......... .......... .......... .......... 29% 1.52M 5m44s\n154750K .......... .......... .......... .......... .......... 29% 101M 5m44s\n154800K .......... .......... .......... .......... .......... 29% 586K 5m44s\n154850K .......... .......... .......... .......... .......... 29% 206K 5m45s\n154900K .......... .......... .......... .......... .......... 29% 13.1M 5m45s\n154950K .......... .......... .......... .......... .......... 29% 454M 5m44s\n155000K .......... .......... .......... .......... .......... 29% 144M 5m44s\n155050K .......... .......... .......... .......... .......... 29% 435M 5m44s\n155100K .......... .......... .......... .......... .......... 29% 163M 5m44s\n155150K .......... .......... .......... .......... .......... 29% 872K 5m44s\n155200K .......... .......... .......... .......... .......... 29% 1.12M 5m44s\n155250K .......... .......... .......... .......... .......... 29% 1.25M 5m44s\n155300K .......... .......... .......... .......... .......... 29% 1.16M 5m44s\n155350K .......... .......... .......... .......... .......... 29% 1.16M 5m44s\n155400K .......... .......... .......... .......... .......... 29% 1.18M 5m44s\n155450K .......... .......... .......... .......... .......... 29% 1.08M 5m44s\n155500K .......... .......... .......... .......... .......... 29% 1.35M 5m44s\n155550K .......... .......... .......... .......... .......... 29% 920K 5m43s\n155600K .......... .......... .......... .......... .......... 29% 1.15M 5m43s\n155650K .......... .......... .......... .......... .......... 29% 1.17M 5m43s\n155700K .......... .......... .......... .......... .......... 29% 1.24M 5m43s\n155750K .......... .......... .......... .......... .......... 29% 1.21M 5m43s\n155800K .......... .......... .......... .......... .......... 29% 1.07M 5m43s\n155850K .......... .......... .......... .......... .......... 29% 1.29M 5m43s\n155900K .......... .......... .......... .......... .......... 29% 1.19M 5m43s\n155950K .......... .......... .......... .......... .......... 29% 922K 5m43s\n156000K .......... .......... .......... .......... .......... 29% 1.19M 5m43s\n156050K .......... .......... .......... .......... .......... 29% 1.18M 5m43s\n156100K .......... .......... .......... .......... .......... 29% 1.16M 5m43s\n156150K .......... .......... .......... .......... .......... 29% 1.22M 5m43s\n156200K .......... .......... .......... .......... .......... 29% 1.14M 5m43s\n156250K .......... .......... .......... .......... .......... 29% 1.24M 5m43s\n156300K .......... .......... .......... .......... .......... 29% 1.13M 5m43s\n156350K .......... .......... .......... .......... .......... 29% 921K 5m43s\n156400K .......... .......... .......... .......... .......... 29% 1.20M 5m43s\n156450K .......... .......... .......... .......... .......... 29% 1.20M 5m43s\n156500K .......... .......... .......... .......... .......... 29% 1.18M 5m42s\n156550K .......... .......... .......... .......... .......... 29% 1.15M 5m42s\n156600K .......... .......... .......... .......... .......... 29% 1.24M 5m42s\n156650K .......... .......... .......... .......... .......... 29% 1.09M 5m42s\n156700K .......... .......... .......... .......... .......... 29% 1.30M 5m42s\n156750K .......... .......... .......... .......... .......... 29% 921K 5m42s\n156800K .......... .......... .......... .......... .......... 29% 1.15M 5m42s\n156850K .......... .......... .......... .......... .......... 29% 1.17M 5m42s\n156900K .......... .......... .......... .......... .......... 29% 1.17M 5m42s\n156950K .......... .......... .......... .......... .......... 29% 1.23M 5m42s\n157000K .......... .......... .......... .......... .......... 29% 1.15M 5m42s\n157050K .......... .......... .......... .......... .......... 29% 1.22M 5m42s\n157100K .......... .......... .......... .......... .......... 29% 1.22M 5m42s\n157150K .......... .......... .......... .......... .......... 29% 905K 5m42s\n157200K .......... .......... .......... .......... .......... 29% 1.18M 5m42s\n157250K .......... .......... .......... .......... .......... 29% 1.22M 5m42s\n157300K .......... .......... .......... .......... .......... 29% 1.13M 5m42s\n157350K .......... .......... .......... .......... .......... 29% 1.21M 5m42s\n157400K .......... .......... .......... .......... .......... 29% 1.18M 5m42s\n157450K .......... .......... .......... .......... .......... 29% 1.20M 5m41s\n157500K .......... .......... .......... .......... .......... 29% 1.20M 5m41s\n157550K .......... .......... .......... .......... .......... 29% 903K 5m41s\n157600K .......... .......... .......... .......... .......... 29% 1.20M 5m41s\n157650K .......... .......... .......... .......... .......... 29% 1.19M 5m41s\n157700K .......... .......... .......... .......... .......... 29% 1.19M 5m41s\n157750K .......... .......... .......... .......... .......... 29% 1.17M 5m41s\n157800K .......... .......... .......... .......... .......... 29% 1.19M 5m41s\n157850K .......... .......... .......... .......... .......... 29% 1.19M 5m41s\n157900K .......... .......... .......... .......... .......... 29% 1.20M 5m41s\n157950K .......... .......... .......... .......... .......... 29% 878K 5m41s\n158000K .......... .......... .......... .......... .......... 29% 1.26M 5m41s\n158050K .......... .......... .......... .......... .......... 29% 1.14M 5m41s\n158100K .......... .......... .......... .......... .......... 29% 1.22M 5m41s\n158150K .......... .......... .......... .......... .......... 29% 1.13M 5m41s\n158200K .......... .......... .......... .......... .......... 29% 1.17M 5m41s\n158250K .......... .......... .......... .......... .......... 29% 1.22M 5m41s\n158300K .......... .......... .......... .......... .......... 29% 1.18M 5m41s\n158350K .......... .......... .......... .......... .......... 29% 888K 5m41s\n158400K .......... .......... .......... .......... .......... 29% 1.20M 5m41s\n158450K .......... .......... .......... .......... .......... 29% 1.15M 5m40s\n158500K .......... .......... .......... .......... .......... 29% 1.23M 5m40s\n158550K .......... .......... .......... .......... .......... 29% 1.16M 5m40s\n158600K .......... .......... .......... .......... .......... 29% 1.14M 5m40s\n158650K .......... .......... .......... .......... .......... 29% 1.24M 5m40s\n158700K .......... .......... .......... .......... .......... 29% 1.20M 5m40s\n158750K .......... .......... .......... .......... .......... 29% 915K 5m40s\n158800K .......... .......... .......... .......... .......... 29% 1.18M 5m40s\n158850K .......... .......... .......... .......... .......... 29% 1.18M 5m40s\n158900K .......... .......... .......... .......... .......... 29% 1.20M 5m40s\n158950K .......... .......... .......... .......... .......... 29% 1.18M 5m40s\n159000K .......... .......... .......... .......... .......... 29% 1.16M 5m40s\n159050K .......... .......... .......... .......... .......... 29% 1.18M 5m40s\n159100K .......... .......... .......... .......... .......... 29% 1.22M 5m40s\n159150K .......... .......... .......... .......... .......... 29% 923K 5m40s\n159200K .......... .......... .......... .......... .......... 29% 1.18M 5m40s\n159250K .......... .......... .......... .......... .......... 29% 1.15M 5m40s\n159300K .......... .......... .......... .......... .......... 29% 1.21M 5m40s\n159350K .......... .......... .......... .......... .......... 29% 1.17M 5m40s\n159400K .......... .......... .......... .......... .......... 29% 1.19M 5m39s\n159450K .......... .......... .......... .......... .......... 29% 1.23M 5m39s\n159500K .......... .......... .......... .......... .......... 29% 1.18M 5m39s\n159550K .......... .......... .......... .......... .......... 30% 887K 5m39s\n159600K .......... .......... .......... .......... .......... 30% 1.21M 5m39s\n159650K .......... .......... .......... .......... .......... 30% 1.18M 5m39s\n159700K .......... .......... .......... .......... .......... 30% 1.19M 5m39s\n159750K .......... .......... .......... .......... .......... 30% 1.17M 5m39s\n159800K .......... .......... .......... .......... .......... 30% 1.02M 5m39s\n159850K .......... .......... .......... .......... .......... 30% 1.19M 5m39s\n159900K .......... .......... .......... .......... .......... 30% 1.10M 5m39s\n159950K .......... .......... .......... .......... .......... 30% 814K 5m39s\n160000K .......... .......... .......... .......... .......... 30% 1.18M 5m39s\n160050K .......... .......... .......... .......... .......... 30% 1.08M 5m39s\n160100K .......... .......... .......... .......... .......... 30% 1.21M 5m39s\n160150K .......... .......... .......... .......... .......... 30% 1.17M 5m39s\n160200K .......... .......... .......... .......... .......... 30% 1.18M 5m39s\n160250K .......... .......... .......... .......... .......... 30% 1.18M 5m39s\n160300K .......... .......... .......... .......... .......... 30% 1.15M 5m39s\n160350K .......... .......... .......... .......... .......... 30% 945K 5m39s\n160400K .......... .......... .......... .......... .......... 30% 1.19M 5m38s\n160450K .......... .......... .......... .......... .......... 30% 1.18M 5m38s\n160500K .......... .......... .......... .......... .......... 30% 1.16M 5m38s\n160550K .......... .......... .......... .......... .......... 30% 1.20M 5m38s\n160600K .......... .......... .......... .......... .......... 30% 1.14M 5m38s\n160650K .......... .......... .......... .......... .......... 30% 1.21M 5m38s\n160700K .......... .......... .......... .......... .......... 30% 1.20M 5m38s\n160750K .......... .......... .......... .......... .......... 30% 919K 5m38s\n160800K .......... .......... .......... .......... .......... 30% 1.18M 5m38s\n160850K .......... .......... .......... .......... .......... 30% 1.19M 5m38s\n160900K .......... .......... .......... .......... .......... 30% 1.18M 5m38s\n160950K .......... .......... .......... .......... .......... 30% 1.19M 5m38s\n161000K .......... .......... .......... .......... .......... 30% 1.20M 5m38s\n161050K .......... .......... .......... .......... .......... 30% 1.18M 5m38s\n161100K .......... .......... .......... .......... .......... 30% 1.19M 5m38s\n161150K .......... .......... .......... .......... .......... 30% 902K 5m38s\n161200K .......... .......... .......... .......... .......... 30% 1.19M 5m38s\n161250K .......... .......... .......... .......... .......... 30% 1.20M 5m38s\n161300K .......... .......... .......... .......... .......... 30% 1.20M 5m38s\n161350K .......... .......... .......... .......... .......... 30% 1.20M 5m37s\n161400K .......... .......... .......... .......... .......... 30% 1.18M 5m37s\n161450K .......... .......... .......... .......... .......... 30% 1.14M 5m37s\n161500K .......... .......... .......... .......... .......... 30% 1.25M 5m37s\n161550K .......... .......... .......... .......... .......... 30% 908K 5m37s\n161600K .......... .......... .......... .......... .......... 30% 1.15M 5m37s\n161650K .......... .......... .......... .......... .......... 30% 1.13M 5m37s\n161700K .......... .......... .......... .......... .......... 30% 1.19M 5m37s\n161750K .......... .......... .......... .......... .......... 30% 1.16M 5m37s\n161800K .......... .......... .......... .......... .......... 30% 1.21M 5m37s\n161850K .......... .......... .......... .......... .......... 30% 1.18M 5m37s\n161900K .......... .......... .......... .......... .......... 30% 1.19M 5m37s\n161950K .......... .......... .......... .......... .......... 30% 935K 5m37s\n162000K .......... .......... .......... .......... .......... 30% 1.16M 5m37s\n162050K .......... .......... .......... .......... .......... 30% 1.18M 5m37s\n162100K .......... .......... .......... .......... .......... 30% 1.18M 5m37s\n162150K .......... .......... .......... .......... .......... 30% 1.19M 5m37s\n162200K .......... .......... .......... .......... .......... 30% 1.17M 5m37s\n162250K .......... .......... .......... .......... .......... 30% 1.19M 5m37s\n162300K .......... .......... .......... .......... .......... 30% 1.19M 5m36s\n162350K .......... .......... .......... .......... .......... 30% 893K 5m36s\n162400K .......... .......... .......... .......... .......... 30% 1.26M 5m36s\n162450K .......... .......... .......... .......... .......... 30% 1.17M 5m36s\n162500K .......... .......... .......... .......... .......... 30% 1.19M 5m36s\n162550K .......... .......... .......... .......... .......... 30% 1.21M 5m36s\n162600K .......... .......... .......... .......... .......... 30% 1.12M 5m36s\n162650K .......... .......... .......... .......... .......... 30% 1.25M 5m36s\n162700K .......... .......... .......... .......... .......... 30% 1.21M 5m36s\n162750K .......... .......... .......... .......... .......... 30% 902K 5m36s\n162800K .......... .......... .......... .......... .......... 30% 1.19M 5m36s\n162850K .......... .......... .......... .......... .......... 30% 1.19M 5m36s\n162900K .......... .......... .......... .......... .......... 30% 1.15M 5m36s\n162950K .......... .......... .......... .......... .......... 30% 1.22M 5m36s\n163000K .......... .......... .......... .......... .......... 30% 1.15M 5m36s\n163050K .......... .......... .......... .......... .......... 30% 1.22M 5m36s\n163100K .......... .......... .......... .......... .......... 30% 168K 5m36s\n163150K .......... .......... .......... .......... .......... 30% 257M 5m36s\n163200K .......... .......... .......... .......... .......... 30% 433M 5m36s\n163250K .......... .......... .......... .......... .......... 30% 1.49M 5m36s\n163300K .......... .......... .......... .......... .......... 30% 296M 5m36s\n163350K .......... .......... .......... .......... .......... 30% 1.35M 5m36s\n163400K .......... .......... .......... .......... .......... 30% 1.20M 5m36s\n163450K .......... .......... .......... .......... .......... 30% 1.15M 5m36s\n163500K .......... .......... .......... .......... .......... 30% 1.18M 5m35s\n163550K .......... .......... .......... .......... .......... 30% 918K 5m35s\n163600K .......... .......... .......... .......... .......... 30% 1.18M 5m35s\n163650K .......... .......... .......... .......... .......... 30% 1.11M 5m35s\n163700K .......... .......... .......... .......... .......... 30% 1.21M 5m35s\n163750K .......... .......... .......... .......... .......... 30% 1.27M 5m35s\n163800K .......... .......... .......... .......... .......... 30% 1.14M 5m35s\n163850K .......... .......... .......... .......... .......... 30% 1.18M 5m35s\n163900K .......... .......... .......... .......... .......... 30% 1.19M 5m35s\n163950K .......... .......... .......... .......... .......... 30% 932K 5m35s\n164000K .......... .......... .......... .......... .......... 30% 1.14M 5m35s\n164050K .......... .......... .......... .......... .......... 30% 203K 5m35s\n164100K .......... .......... .......... .......... .......... 30% 35.6M 5m35s\n164150K .......... .......... .......... .......... .......... 30% 14.4M 5m35s\n164200K .......... .......... .......... .......... .......... 30% 34.4M 5m35s\n164250K .......... .......... .......... .......... .......... 30% 8.24M 5m35s\n164300K .......... .......... .......... .......... .......... 30% 20.5M 5m35s\n164350K .......... .......... .......... .......... .......... 30% 871K 5m35s\n164400K .......... .......... .......... .......... .......... 30% 1.16M 5m35s\n164450K .......... .......... .......... .......... .......... 30% 1.21M 5m35s\n164500K .......... .......... .......... .......... .......... 30% 1.15M 5m35s\n164550K .......... .......... .......... .......... .......... 30% 1.22M 5m34s\n164600K .......... .......... .......... .......... .......... 30% 1.21M 5m34s\n164650K .......... .......... .......... .......... .......... 30% 1.19M 5m34s\n164700K .......... .......... .......... .......... .......... 30% 1.18M 5m34s\n164750K .......... .......... .......... .......... .......... 30% 920K 5m34s\n164800K .......... .......... .......... .......... .......... 30% 1.17M 5m34s\n164850K .......... .......... .......... .......... .......... 31% 1.11M 5m34s\n164900K .......... .......... .......... .......... .......... 31% 1.25M 5m34s\n164950K .......... .......... .......... .......... .......... 31% 1.20M 5m34s\n165000K .......... .......... .......... .......... .......... 31% 1.22M 5m34s\n165050K .......... .......... .......... .......... .......... 31% 1.12M 5m34s\n165100K .......... .......... .......... .......... .......... 31% 1.24M 5m34s\n165150K .......... .......... .......... .......... .......... 31% 912K 5m34s\n165200K .......... .......... .......... .......... .......... 31% 1.22M 5m34s\n165250K .......... .......... .......... .......... .......... 31% 1.18M 5m34s\n165300K .......... .......... .......... .......... .......... 31% 1.15M 5m34s\n165350K .......... .......... .......... .......... .......... 31% 174K 5m34s\n165400K .......... .......... .......... .......... .......... 31% 162M 5m34s\n165450K .......... .......... .......... .......... .......... 31% 173M 5m34s\n165500K .......... .......... .......... .......... .......... 31% 504K 5m34s\n165550K .......... .......... .......... .......... .......... 31% 55.1M 5m34s\n165600K .......... .......... .......... .......... .......... 31% 1.01M 5m34s\n165650K .......... .......... .......... .......... .......... 31% 1.19M 5m34s\n165700K .......... .......... .......... .......... .......... 31% 1.18M 5m34s\n165750K .......... .......... .......... .......... .......... 31% 1.22M 5m34s\n165800K .......... .......... .......... .......... .......... 31% 1.16M 5m34s\n165850K .......... .......... .......... .......... .......... 31% 1.19M 5m34s\n165900K .......... .......... .......... .......... .......... 31% 1.18M 5m33s\n165950K .......... .......... .......... .......... .......... 31% 904K 5m33s\n166000K .......... .......... .......... .......... .......... 31% 1.18M 5m33s\n166050K .......... .......... .......... .......... .......... 31% 1.19M 5m33s\n166100K .......... .......... .......... .......... .......... 31% 1.22M 5m33s\n166150K .......... .......... .......... .......... .......... 31% 1.17M 5m33s\n166200K .......... .......... .......... .......... .......... 31% 1.19M 5m33s\n166250K .......... .......... .......... .......... .......... 31% 1.17M 5m33s\n166300K .......... .......... .......... .......... .......... 31% 1.19M 5m33s\n166350K .......... .......... .......... .......... .......... 31% 901K 5m33s\n166400K .......... .......... .......... .......... .......... 31% 1.22M 5m33s\n166450K .......... .......... .......... .......... .......... 31% 1.19M 5m33s\n166500K .......... .......... .......... .......... .......... 31% 1.16M 5m33s\n166550K .......... .......... .......... .......... .......... 31% 1.25M 5m33s\n166600K .......... .......... .......... .......... .......... 31% 1.14M 5m33s\n166650K .......... .......... .......... .......... .......... 31% 1.19M 5m33s\n166700K .......... .......... .......... .......... .......... 31% 1.22M 5m33s\n166750K .......... .......... .......... .......... .......... 31% 902K 5m33s\n166800K .......... .......... .......... .......... .......... 31% 1.23M 5m33s\n166850K .......... .......... .......... .......... .......... 31% 1.17M 5m32s\n166900K .......... .......... .......... .......... .......... 31% 1.15M 5m32s\n166950K .......... .......... .......... .......... .......... 31% 192K 5m33s\n167000K .......... .......... .......... .......... .......... 31% 162M 5m33s\n167050K .......... .......... .......... .......... .......... 31% 174M 5m33s\n167100K .......... .......... .......... .......... .......... 31% 1.45M 5m33s\n167150K .......... .......... .......... .......... .......... 31% 75.1M 5m32s\n167200K .......... .......... .......... .......... .......... 31% 734K 5m32s\n167250K .......... .......... .......... .......... .......... 31% 215K 5m33s\n167300K .......... .......... .......... .......... .......... 31% 2.15M 5m33s\n167350K .......... .......... .......... .......... .......... 31% 6.58M 5m33s\n167400K .......... .......... .......... .......... .......... 31% 158M 5m32s\n167450K .......... .......... .......... .......... .......... 31% 99.8M 5m32s\n167500K .......... .......... .......... .......... .......... 31% 161M 5m32s\n167550K .......... .......... .......... .......... .......... 31% 1.34M 5m32s\n167600K .......... .......... .......... .......... .......... 31% 1.07M 5m32s\n167650K .......... .......... .......... .......... .......... 31% 1.33M 5m32s\n167700K .......... .......... .......... .......... .......... 31% 1.17M 5m32s\n167750K .......... .......... .......... .......... .......... 31% 1.19M 5m32s\n167800K .......... .......... .......... .......... .......... 31% 1.08M 5m32s\n167850K .......... .......... .......... .......... .......... 31% 1.07M 5m32s\n167900K .......... .......... .......... .......... .......... 31% 1.51M 5m32s\n167950K .......... .......... .......... .......... .......... 31% 878K 5m32s\n168000K .......... .......... .......... .......... .......... 31% 1.23M 5m32s\n168050K .......... .......... .......... .......... .......... 31% 1.20M 5m31s\n168100K .......... .......... .......... .......... .......... 31% 1.19M 5m31s\n168150K .......... .......... .......... .......... .......... 31% 1.10M 5m31s\n168200K .......... .......... .......... .......... .......... 31% 1.26M 5m31s\n168250K .......... .......... .......... .......... .......... 31% 1.20M 5m31s\n168300K .......... .......... .......... .......... .......... 31% 1.20M 5m31s\n168350K .......... .......... .......... .......... .......... 31% 915K 5m31s\n168400K .......... .......... .......... .......... .......... 31% 1.17M 5m31s\n168450K .......... .......... .......... .......... .......... 31% 1.13M 5m31s\n168500K .......... .......... .......... .......... .......... 31% 1.25M 5m31s\n168550K .......... .......... .......... .......... .......... 31% 1.18M 5m31s\n168600K .......... .......... .......... .......... .......... 31% 1.18M 5m31s\n168650K .......... .......... .......... .......... .......... 31% 1.20M 5m31s\n168700K .......... .......... .......... .......... .......... 31% 1.18M 5m31s\n168750K .......... .......... .......... .......... .......... 31% 926K 5m31s\n168800K .......... .......... .......... .......... .......... 31% 1.18M 5m31s\n168850K .......... .......... .......... .......... .......... 31% 1.21M 5m31s\n168900K .......... .......... .......... .......... .......... 31% 1.19M 5m31s\n168950K .......... .......... .......... .......... .......... 31% 1.20M 5m31s\n169000K .......... .......... .......... .......... .......... 31% 1.14M 5m30s\n169050K .......... .......... .......... .......... .......... 31% 198K 5m31s\n169100K .......... .......... .......... .......... .......... 31% 85.9M 5m31s\n169150K .......... .......... .......... .......... .......... 31% 23.9M 5m31s\n169200K .......... .......... .......... .......... .......... 31% 71.9M 5m30s\n169250K .......... .......... .......... .......... .......... 31% 145M 5m30s\n169300K .......... .......... .......... .......... .......... 31% 1.37M 5m30s\n169350K .......... .......... .......... .......... .......... 31% 1.15M 5m30s\n169400K .......... .......... .......... .......... .......... 31% 204K 5m31s\n169450K .......... .......... .......... .......... .......... 31% 75.2M 5m30s\n169500K .......... .......... .......... .......... .......... 31% 183M 5m30s\n169550K .......... .......... .......... .......... .......... 31% 140M 5m30s\n169600K .......... .......... .......... .......... .......... 31% 72.9M 5m30s\n169650K .......... .......... .......... .......... .......... 31% 1.34M 5m30s\n169700K .......... .......... .......... .......... .......... 31% 1.18M 5m30s\n169750K .......... .......... .......... .......... .......... 31% 1.23M 5m30s\n169800K .......... .......... .......... .......... .......... 31% 1.22M 5m30s\n169850K .......... .......... .......... .......... .......... 31% 1.07M 5m30s\n169900K .......... .......... .......... .......... .......... 31% 1.30M 5m30s\n169950K .......... .......... .......... .......... .......... 31% 879K 5m30s\n170000K .......... .......... .......... .......... .......... 31% 1.15M 5m30s\n170050K .......... .......... .......... .......... .......... 31% 1.16M 5m30s\n170100K .......... .......... .......... .......... .......... 31% 1.09M 5m30s\n170150K .......... .......... .......... .......... .......... 32% 868K 5m29s\n170200K .......... .......... .......... .......... .......... 32% 961K 5m29s\n170250K .......... .......... .......... .......... .......... 32% 799K 5m29s\n170300K .......... .......... .......... .......... .......... 32% 1.30M 5m29s\n170350K .......... .......... .......... .......... .......... 32% 755K 5m29s\n170400K .......... .......... .......... .......... .......... 32% 1.04M 5m29s\n170450K .......... .......... .......... .......... .......... 32% 765K 5m29s\n170500K .......... .......... .......... .......... .......... 32% 1020K 5m29s\n170550K .......... .......... .......... .......... .......... 32% 1.20M 5m29s\n170600K .......... .......... .......... .......... .......... 32% 1.20M 5m29s\n170650K .......... .......... .......... .......... .......... 32% 1.19M 5m29s\n170700K .......... .......... .......... .......... .......... 32% 984K 5m29s\n170750K .......... .......... .......... .......... .......... 32% 786K 5m29s\n170800K .......... .......... .......... .......... .......... 32% 1.22M 5m29s\n170850K .......... .......... .......... .......... .......... 32% 1.20M 5m29s\n170900K .......... .......... .......... .......... .......... 32% 1.18M 5m29s\n170950K .......... .......... .......... .......... .......... 32% 1.20M 5m29s\n171000K .......... .......... .......... .......... .......... 32% 1.19M 5m29s\n171050K .......... .......... .......... .......... .......... 32% 1.16M 5m29s\n171100K .......... .......... .......... .......... .......... 32% 1.19M 5m29s\n171150K .......... .......... .......... .......... .......... 32% 901K 5m29s\n171200K .......... .......... .......... .......... .......... 32% 1.20M 5m29s\n171250K .......... .......... .......... .......... .......... 32% 1.19M 5m29s\n171300K .......... .......... .......... .......... .......... 32% 1.17M 5m29s\n171350K .......... .......... .......... .......... .......... 32% 1.15M 5m28s\n171400K .......... .......... .......... .......... .......... 32% 1.17M 5m28s\n171450K .......... .......... .......... .......... .......... 32% 1015K 5m28s\n171500K .......... .......... .......... .......... .......... 32% 1.36M 5m28s\n171550K .......... .......... .......... .......... .......... 32% 794K 5m28s\n171600K .......... .......... .......... .......... .......... 32% 1.06M 5m28s\n171650K .......... .......... .......... .......... .......... 32% 1.02M 5m28s\n171700K .......... .......... .......... .......... .......... 32% 980K 5m28s\n171750K .......... .......... .......... .......... .......... 32% 1.28M 5m28s\n171800K .......... .......... .......... .......... .......... 32% 1.06M 5m28s\n171850K .......... .......... .......... .......... .......... 32% 1.22M 5m28s\n171900K .......... .......... .......... .......... .......... 32% 1.19M 5m28s\n171950K .......... .......... .......... .......... .......... 32% 856K 5m28s\n172000K .......... .......... .......... .......... .......... 32% 1.18M 5m28s\n172050K .......... .......... .......... .......... .......... 32% 1.22M 5m28s\n172100K .......... .......... .......... .......... .......... 32% 1.09M 5m28s\n172150K .......... .......... .......... .......... .......... 32% 1.21M 5m28s\n172200K .......... .......... .......... .......... .......... 32% 1.22M 5m28s\n172250K .......... .......... .......... .......... .......... 32% 1.27M 5m28s\n172300K .......... .......... .......... .......... .......... 32% 1.16M 5m28s\n172350K .......... .......... .......... .......... .......... 32% 896K 5m28s\n172400K .......... .......... .......... .......... .......... 32% 1.18M 5m27s\n172450K .......... .......... .......... .......... .......... 32% 1.18M 5m27s\n172500K .......... .......... .......... .......... .......... 32% 1.22M 5m27s\n172550K .......... .......... .......... .......... .......... 32% 1.18M 5m27s\n172600K .......... .......... .......... .......... .......... 32% 1.14M 5m27s\n172650K .......... .......... .......... .......... .......... 32% 1.22M 5m27s\n172700K .......... .......... .......... .......... .......... 32% 1.19M 5m27s\n172750K .......... .......... .......... .......... .......... 32% 925K 5m27s\n172800K .......... .......... .......... .......... .......... 32% 1.17M 5m27s\n172850K .......... .......... .......... .......... .......... 32% 1.19M 5m27s\n172900K .......... .......... .......... .......... .......... 32% 1.19M 5m27s\n172950K .......... .......... .......... .......... .......... 32% 1.14M 5m27s\n173000K .......... .......... .......... .......... .......... 32% 1.23M 5m27s\n173050K .......... .......... .......... .......... .......... 32% 1.19M 5m27s\n173100K .......... .......... .......... .......... .......... 32% 1.20M 5m27s\n173150K .......... .......... .......... .......... .......... 32% 909K 5m27s\n173200K .......... .......... .......... .......... .......... 32% 1.21M 5m27s\n173250K .......... .......... .......... .......... .......... 32% 1.18M 5m27s\n173300K .......... .......... .......... .......... .......... 32% 1.18M 5m27s\n173350K .......... .......... .......... .......... .......... 32% 1.22M 5m26s\n173400K .......... .......... .......... .......... .......... 32% 1.20M 5m26s\n173450K .......... .......... .......... .......... .......... 32% 1.16M 5m26s\n173500K .......... .......... .......... .......... .......... 32% 1.21M 5m26s\n173550K .......... .......... .......... .......... .......... 32% 911K 5m26s\n173600K .......... .......... .......... .......... .......... 32% 1.18M 5m26s\n173650K .......... .......... .......... .......... .......... 32% 1.16M 5m26s\n173700K .......... .......... .......... .......... .......... 32% 1.17M 5m26s\n173750K .......... .......... .......... .......... .......... 32% 1.22M 5m26s\n173800K .......... .......... .......... .......... .......... 32% 1.19M 5m26s\n173850K .......... .......... .......... .......... .......... 32% 1.17M 5m26s\n173900K .......... .......... .......... .......... .......... 32% 1.16M 5m26s\n173950K .......... .......... .......... .......... .......... 32% 932K 5m26s\n174000K .......... .......... .......... .......... .......... 32% 1.17M 5m26s\n174050K .......... .......... .......... .......... .......... 32% 1.18M 5m26s\n174100K .......... .......... .......... .......... .......... 32% 1.23M 5m26s\n174150K .......... .......... .......... .......... .......... 32% 1.19M 5m26s\n174200K .......... .......... .......... .......... .......... 32% 1.14M 5m26s\n174250K .......... .......... .......... .......... .......... 32% 1.26M 5m26s\n174300K .......... .......... .......... .......... .......... 32% 1.15M 5m26s\n174350K .......... .......... .......... .......... .......... 32% 904K 5m25s\n174400K .......... .......... .......... .......... .......... 32% 1.06M 5m25s\n174450K .......... .......... .......... .......... .......... 32% 1.29M 5m25s\n174500K .......... .......... .......... .......... .......... 32% 1.14M 5m25s\n174550K .......... .......... .......... .......... .......... 32% 1.20M 5m25s\n174600K .......... .......... .......... .......... .......... 32% 1.16M 5m25s\n174650K .......... .......... .......... .......... .......... 32% 1.21M 5m25s\n174700K .......... .......... .......... .......... .......... 32% 1.21M 5m25s\n174750K .......... .......... .......... .......... .......... 32% 916K 5m25s\n174800K .......... .......... .......... .......... .......... 32% 1.17M 5m25s\n174850K .......... .......... .......... .......... .......... 32% 1.20M 5m25s\n174900K .......... .......... .......... .......... .......... 32% 1.18M 5m25s\n174950K .......... .......... .......... .......... .......... 32% 1.21M 5m25s\n175000K .......... .......... .......... .......... .......... 32% 1.18M 5m25s\n175050K .......... .......... .......... .......... .......... 32% 1.17M 5m25s\n175100K .......... .......... .......... .......... .......... 32% 1.23M 5m25s\n175150K .......... .......... .......... .......... .......... 32% 910K 5m25s\n175200K .......... .......... .......... .......... .......... 32% 1.14M 5m25s\n175250K .......... .......... .......... .......... .......... 32% 1.18M 5m25s\n175300K .......... .......... .......... .......... .......... 32% 1.19M 5m25s\n175350K .......... .......... .......... .......... .......... 32% 1.22M 5m24s\n175400K .......... .......... .......... .......... .......... 32% 1.18M 5m24s\n175450K .......... .......... .......... .......... .......... 32% 1.20M 5m24s\n175500K .......... .......... .......... .......... .......... 33% 1.19M 5m24s\n175550K .......... .......... .......... .......... .......... 33% 898K 5m24s\n175600K .......... .......... .......... .......... .......... 33% 1.14M 5m24s\n175650K .......... .......... .......... .......... .......... 33% 1.20M 5m24s\n175700K .......... .......... .......... .......... .......... 33% 1.24M 5m24s\n175750K .......... .......... .......... .......... .......... 33% 1.17M 5m24s\n175800K .......... .......... .......... .......... .......... 33% 1.21M 5m24s\n175850K .......... .......... .......... .......... .......... 33% 1.18M 5m24s\n175900K .......... .......... .......... .......... .......... 33% 1.18M 5m24s\n175950K .......... .......... .......... .......... .......... 33% 925K 5m24s\n176000K .......... .......... .......... .......... .......... 33% 1.20M 5m24s\n176050K .......... .......... .......... .......... .......... 33% 1.18M 5m24s\n176100K .......... .......... .......... .......... .......... 33% 1.16M 5m24s\n176150K .......... .......... .......... .......... .......... 33% 1.21M 5m24s\n176200K .......... .......... .......... .......... .......... 33% 1.11M 5m24s\n176250K .......... .......... .......... .......... .......... 33% 64.9K 5m25s\n176300K .......... .......... .......... .......... .......... 33% 1.20M 5m25s\n176350K .......... .......... .......... .......... .......... 33% 913K 5m25s\n176400K .......... .......... .......... .......... .......... 33% 1.20M 5m25s\n176450K .......... .......... .......... .......... .......... 33% 1.20M 5m25s\n176500K .......... .......... .......... .......... .......... 33% 1.17M 5m25s\n176550K .......... .......... .......... .......... .......... 33% 1.10M 5m25s\n176600K .......... .......... .......... .......... .......... 33% 1.28M 5m25s\n176650K .......... .......... .......... .......... .......... 33% 1.19M 5m25s\n176700K .......... .......... .......... .......... .......... 33% 1.19M 5m25s\n176750K .......... .......... .......... .......... .......... 33% 146K 5m25s\n176800K .......... .......... .......... .......... .......... 33% 74.9M 5m25s\n176850K .......... .......... .......... .......... .......... 33% 256M 5m25s\n176900K .......... .......... .......... .......... .......... 33% 774K 5m25s\n176950K .......... .......... .......... .......... .......... 33% 75.7M 5m25s\n177000K .......... .......... .......... .......... .......... 33% 197M 5m25s\n177050K .......... .......... .......... .......... .......... 33% 937K 5m25s\n177100K .......... .......... .......... .......... .......... 33% 1.17M 5m24s\n177150K .......... .......... .......... .......... .......... 33% 204K 5m25s\n177200K .......... .......... .......... .......... .......... 33% 64.6M 5m25s\n177250K .......... .......... .......... .......... .......... 33% 70.0M 5m25s\n177300K .......... .......... .......... .......... .......... 33% 135M 5m24s\n177350K .......... .......... .......... .......... .......... 33% 141M 5m24s\n177400K .......... .......... .......... .......... .......... 33% 1.08M 5m24s\n177450K .......... .......... .......... .......... .......... 33% 1.18M 5m24s\n177500K .......... .......... .......... .......... .......... 33% 1.11M 5m24s\n177550K .......... .......... .......... .......... .......... 33% 938K 5m24s\n177600K .......... .......... .......... .......... .......... 33% 1.08M 5m24s\n177650K .......... .......... .......... .......... .......... 33% 978K 5m24s\n177700K .......... .......... .......... .......... .......... 33% 1.61M 5m24s\n177750K .......... .......... .......... .......... .......... 33% 945K 5m24s\n177800K .......... .......... .......... .......... .......... 33% 1.16M 5m24s\n177850K .......... .......... .......... .......... .......... 33% 1.23M 5m24s\n177900K .......... .......... .......... .......... .......... 33% 1.15M 5m24s\n177950K .......... .......... .......... .......... .......... 33% 948K 5m24s\n178000K .......... .......... .......... .......... .......... 33% 1.18M 5m24s\n178050K .......... .......... .......... .......... .......... 33% 1.17M 5m24s\n178100K .......... .......... .......... .......... .......... 33% 1.16M 5m24s\n178150K .......... .......... .......... .......... .......... 33% 1.22M 5m23s\n178200K .......... .......... .......... .......... .......... 33% 1.19M 5m23s\n178250K .......... .......... .......... .......... .......... 33% 1.19M 5m23s\n178300K .......... .......... .......... .......... .......... 33% 1.17M 5m23s\n178350K .......... .......... .......... .......... .......... 33% 924K 5m23s\n178400K .......... .......... .......... .......... .......... 33% 1.19M 5m23s\n178450K .......... .......... .......... .......... .......... 33% 1.16M 5m23s\n178500K .......... .......... .......... .......... .......... 33% 1.20M 5m23s\n178550K .......... .......... .......... .......... .......... 33% 1.22M 5m23s\n178600K .......... .......... .......... .......... .......... 33% 1.15M 5m23s\n178650K .......... .......... .......... .......... .......... 33% 1.24M 5m23s\n178700K .......... .......... .......... .......... .......... 33% 1.15M 5m23s\n178750K .......... .......... .......... .......... .......... 33% 908K 5m23s\n178800K .......... .......... .......... .......... .......... 33% 1.19M 5m23s\n178850K .......... .......... .......... .......... .......... 33% 1.17M 5m23s\n178900K .......... .......... .......... .......... .......... 33% 1.18M 5m23s\n178950K .......... .......... .......... .......... .......... 33% 1.20M 5m23s\n179000K .......... .......... .......... .......... .......... 33% 1.19M 5m23s\n179050K .......... .......... .......... .......... .......... 33% 1.19M 5m23s\n179100K .......... .......... .......... .......... .......... 33% 1.19M 5m22s\n179150K .......... .......... .......... .......... .......... 33% 925K 5m22s\n179200K .......... .......... .......... .......... .......... 33% 1.13M 5m22s\n179250K .......... .......... .......... .......... .......... 33% 1.22M 5m22s\n179300K .......... .......... .......... .......... .......... 33% 1.21M 5m22s\n179350K .......... .......... .......... .......... .......... 33% 1.19M 5m22s\n179400K .......... .......... .......... .......... .......... 33% 1.17M 5m22s\n179450K .......... .......... .......... .......... .......... 33% 1.22M 5m22s\n179500K .......... .......... .......... .......... .......... 33% 1.16M 5m22s\n179550K .......... .......... .......... .......... .......... 33% 920K 5m22s\n179600K .......... .......... .......... .......... .......... 33% 1.14M 5m22s\n179650K .......... .......... .......... .......... .......... 33% 1.24M 5m22s\n179700K .......... .......... .......... .......... .......... 33% 1.16M 5m22s\n179750K .......... .......... .......... .......... .......... 33% 1.22M 5m22s\n179800K .......... .......... .......... .......... .......... 33% 1.21M 5m22s\n179850K .......... .......... .......... .......... .......... 33% 1.20M 5m22s\n179900K .......... .......... .......... .......... .......... 33% 1.18M 5m22s\n179950K .......... .......... .......... .......... .......... 33% 887K 5m22s\n180000K .......... .......... .......... .......... .......... 33% 1.20M 5m22s\n180050K .......... .......... .......... .......... .......... 33% 1.12M 5m22s\n180100K .......... .......... .......... .......... .......... 33% 1.25M 5m21s\n180150K .......... .......... .......... .......... .......... 33% 1.21M 5m21s\n180200K .......... .......... .......... .......... .......... 33% 1.18M 5m21s\n180250K .......... .......... .......... .......... .......... 33% 1.18M 5m21s\n180300K .......... .......... .......... .......... .......... 33% 1.19M 5m21s\n180350K .......... .......... .......... .......... .......... 33% 912K 5m21s\n180400K .......... .......... .......... .......... .......... 33% 1.17M 5m21s\n180450K .......... .......... .......... .......... .......... 33% 1.22M 5m21s\n180500K .......... .......... .......... .......... .......... 33% 1.18M 5m21s\n180550K .......... .......... .......... .......... .......... 33% 1.17M 5m21s\n180600K .......... .......... .......... .......... .......... 33% 1.16M 5m21s\n180650K .......... .......... .......... .......... .......... 33% 1.24M 5m21s\n180700K .......... .......... .......... .......... .......... 33% 1.18M 5m21s\n180750K .......... .......... .......... .......... .......... 33% 902K 5m21s\n180800K .......... .......... .......... .......... .......... 34% 1.18M 5m21s\n180850K .......... .......... .......... .......... .......... 34% 1.19M 5m21s\n180900K .......... .......... .......... .......... .......... 34% 1.19M 5m21s\n180950K .......... .......... .......... .......... .......... 34% 1.15M 5m21s\n181000K .......... .......... .......... .......... .......... 34% 1.20M 5m21s\n181050K .......... .......... .......... .......... .......... 34% 1.20M 5m20s\n181100K .......... .......... .......... .......... .......... 34% 1.17M 5m20s\n181150K .......... .......... .......... .......... .......... 34% 939K 5m20s\n181200K .......... .......... .......... .......... .......... 34% 1.16M 5m20s\n181250K .......... .......... .......... .......... .......... 34% 1.20M 5m20s\n181300K .......... .......... .......... .......... .......... 34% 1.20M 5m20s\n181350K .......... .......... .......... .......... .......... 34% 1.16M 5m20s\n181400K .......... .......... .......... .......... .......... 34% 1.17M 5m20s\n181450K .......... .......... .......... .......... .......... 34% 1.23M 5m20s\n181500K .......... .......... .......... .......... .......... 34% 1.22M 5m20s\n181550K .......... .......... .......... .......... .......... 34% 891K 5m20s\n181600K .......... .......... .......... .......... .......... 34% 1.20M 5m20s\n181650K .......... .......... .......... .......... .......... 34% 1.19M 5m20s\n181700K .......... .......... .......... .......... .......... 34% 1.20M 5m20s\n181750K .......... .......... .......... .......... .......... 34% 1.18M 5m20s\n181800K .......... .......... .......... .......... .......... 34% 1.20M 5m20s\n181850K .......... .......... .......... .......... .......... 34% 1.20M 5m20s\n181900K .......... .......... .......... .......... .......... 34% 1.20M 5m20s\n181950K .......... .......... .......... .......... .......... 34% 864K 5m20s\n182000K .......... .......... .......... .......... .......... 34% 1.23M 5m20s\n182050K .......... .......... .......... .......... .......... 34% 1.20M 5m19s\n182100K .......... .......... .......... .......... .......... 34% 1.20M 5m19s\n182150K .......... .......... .......... .......... .......... 34% 1.18M 5m19s\n182200K .......... .......... .......... .......... .......... 34% 1.20M 5m19s\n182250K .......... .......... .......... .......... .......... 34% 1.15M 5m19s\n182300K .......... .......... .......... .......... .......... 34% 1.22M 5m19s\n182350K .......... .......... .......... .......... .......... 34% 909K 5m19s\n182400K .......... .......... .......... .......... .......... 34% 1.16M 5m19s\n182450K .......... .......... .......... .......... .......... 34% 1.10M 5m19s\n182500K .......... .......... .......... .......... .......... 34% 1.27M 5m19s\n182550K .......... .......... .......... .......... .......... 34% 1.16M 5m19s\n182600K .......... .......... .......... .......... .......... 34% 1.23M 5m19s\n182650K .......... .......... .......... .......... .......... 34% 1.16M 5m19s\n182700K .......... .......... .......... .......... .......... 34% 1.21M 5m19s\n182750K .......... .......... .......... .......... .......... 34% 933K 5m19s\n182800K .......... .......... .......... .......... .......... 34% 1.09M 5m19s\n182850K .......... .......... .......... .......... .......... 34% 1.29M 5m19s\n182900K .......... .......... .......... .......... .......... 34% 1.20M 5m19s\n182950K .......... .......... .......... .......... .......... 34% 1.10M 5m19s\n183000K .......... .......... .......... .......... .......... 34% 1.24M 5m19s\n183050K .......... .......... .......... .......... .......... 34% 1.11M 5m18s\n183100K .......... .......... .......... .......... .......... 34% 1.29M 5m18s\n183150K .......... .......... .......... .......... .......... 34% 913K 5m18s\n183200K .......... .......... .......... .......... .......... 34% 1.07M 5m18s\n183250K .......... .......... .......... .......... .......... 34% 1.32M 5m18s\n183300K .......... .......... .......... .......... .......... 34% 1.20M 5m18s\n183350K .......... .......... .......... .......... .......... 34% 1.16M 5m18s\n183400K .......... .......... .......... .......... .......... 34% 1.20M 5m18s\n183450K .......... .......... .......... .......... .......... 34% 1.22M 5m18s\n183500K .......... .......... .......... .......... .......... 34% 1.22M 5m18s\n183550K .......... .......... .......... .......... .......... 34% 395K 5m18s\n183600K .......... .......... .......... .......... .......... 34% 79.1M 5m18s\n183650K .......... .......... .......... .......... .......... 34% 4.27M 5m18s\n183700K .......... .......... .......... .......... .......... 34% 1.05M 5m18s\n183750K .......... .......... .......... .......... .......... 34% 220K 5m18s\n183800K .......... .......... .......... .......... .......... 34% 17.4M 5m18s\n183850K .......... .......... .......... .......... .......... 34% 25.4M 5m18s\n183900K .......... .......... .......... .......... .......... 34% 539K 5m18s\n183950K .......... .......... .......... .......... .......... 34% 328M 5m18s\n184000K .......... .......... .......... .......... .......... 34% 136M 5m18s\n184050K .......... .......... .......... .......... .......... 34% 481M 5m17s\n184100K .......... .......... .......... .......... .......... 34% 751K 5m17s\n184150K .......... .......... .......... .......... .......... 34% 1.19M 5m17s\n184200K .......... .......... .......... .......... .......... 34% 1.16M 5m17s\n184250K .......... .......... .......... .......... .......... 34% 1.11M 5m17s\n184300K .......... .......... .......... .......... .......... 34% 1.31M 5m17s\n184350K .......... .......... .......... .......... .......... 34% 865K 5m17s\n184400K .......... .......... .......... .......... .......... 34% 1.15M 5m17s\n184450K .......... .......... .......... .......... .......... 34% 1.38M 5m17s\n184500K .......... .......... .......... .......... .......... 34% 200K 5m17s\n184550K .......... .......... .......... .......... .......... 34% 23.4M 5m17s\n184600K .......... .......... .......... .......... .......... 34% 354M 5m17s\n184650K .......... .......... .......... .......... .......... 34% 6.10M 5m17s\n184700K .......... .......... .......... .......... .......... 34% 11.6M 5m17s\n184750K .......... .......... .......... .......... .......... 34% 5.65M 5m17s\n184800K .......... .......... .......... .......... .......... 34% 203K 5m17s\n184850K .......... .......... .......... .......... .......... 34% 316M 5m17s\n184900K .......... .......... .......... .......... .......... 34% 391M 5m17s\n184950K .......... .......... .......... .......... .......... 34% 38.4M 5m17s\n185000K .......... .......... .......... .......... .......... 34% 494M 5m17s\n185050K .......... .......... .......... .......... .......... 34% 1.23M 5m17s\n185100K .......... .......... .......... .......... .......... 34% 1.22M 5m17s\n185150K .......... .......... .......... .......... .......... 34% 196K 5m17s\n185200K .......... .......... .......... .......... .......... 34% 30.5M 5m17s\n185250K .......... .......... .......... .......... .......... 34% 89.9M 5m17s\n185300K .......... .......... .......... .......... .......... 34% 212M 5m17s\n185350K .......... .......... .......... .......... .......... 34% 479M 5m16s\n185400K .......... .......... .......... .......... .......... 34% 1.42M 5m16s\n185450K .......... .......... .......... .......... .......... 34% 1.18M 5m16s\n185500K .......... .......... .......... .......... .......... 34% 1.23M 5m16s\n185550K .......... .......... .......... .......... .......... 34% 902K 5m16s\n185600K .......... .......... .......... .......... .......... 34% 1.23M 5m16s\n185650K .......... .......... .......... .......... .......... 34% 1.18M 5m16s\n185700K .......... .......... .......... .......... .......... 34% 1.17M 5m16s\n185750K .......... .......... .......... .......... .......... 34% 1.17M 5m16s\n185800K .......... .......... .......... .......... .......... 34% 1.20M 5m16s\n185850K .......... .......... .......... .......... .......... 34% 1.22M 5m16s\n185900K .......... .......... .......... .......... .......... 34% 1.15M 5m16s\n185950K .......... .......... .......... .......... .......... 34% 930K 5m16s\n186000K .......... .......... .......... .......... .......... 34% 1.18M 5m16s\n186050K .......... .......... .......... .......... .......... 34% 1.21M 5m16s\n186100K .......... .......... .......... .......... .......... 34% 1.20M 5m16s\n186150K .......... .......... .......... .......... .......... 35% 1.17M 5m16s\n186200K .......... .......... .......... .......... .......... 35% 1.19M 5m15s\n186250K .......... .......... .......... .......... .......... 35% 1.18M 5m15s\n186300K .......... .......... .......... .......... .......... 35% 1.10M 5m15s\n186350K .......... .......... .......... .......... .......... 35% 963K 5m15s\n186400K .......... .......... .......... .......... .......... 35% 1.21M 5m15s\n186450K .......... .......... .......... .......... .......... 35% 1.17M 5m15s\n186500K .......... .......... .......... .......... .......... 35% 1.15M 5m15s\n186550K .......... .......... .......... .......... .......... 35% 1.24M 5m15s\n186600K .......... .......... .......... .......... .......... 35% 1.16M 5m15s\n186650K .......... .......... .......... .......... .......... 35% 1.11M 5m15s\n186700K .......... .......... .......... .......... .......... 35% 1.25M 5m15s\n186750K .......... .......... .......... .......... .......... 35% 916K 5m15s\n186800K .......... .......... .......... .......... .......... 35% 1.21M 5m15s\n186850K .......... .......... .......... .......... .......... 35% 1.20M 5m15s\n186900K .......... .......... .......... .......... .......... 35% 1.11M 5m15s\n186950K .......... .......... .......... .......... .......... 35% 1.25M 5m15s\n187000K .......... .......... .......... .......... .......... 35% 1.18M 5m15s\n187050K .......... .......... .......... .......... .......... 35% 1.21M 5m15s\n187100K .......... .......... .......... .......... .......... 35% 1.22M 5m15s\n187150K .......... .......... .......... .......... .......... 35% 882K 5m15s\n187200K .......... .......... .......... .......... .......... 35% 1.14M 5m14s\n187250K .......... .......... .......... .......... .......... 35% 1.01M 5m14s\n187300K .......... .......... .......... .......... .......... 35% 1.41M 5m14s\n187350K .......... .......... .......... .......... .......... 35% 1.25M 5m14s\n187400K .......... .......... .......... .......... .......... 35% 1.20M 5m14s\n187450K .......... .......... .......... .......... .......... 35% 1.16M 5m14s\n187500K .......... .......... .......... .......... .......... 35% 1.20M 5m14s\n187550K .......... .......... .......... .......... .......... 35% 919K 5m14s\n187600K .......... .......... .......... .......... .......... 35% 1.19M 5m14s\n187650K .......... .......... .......... .......... .......... 35% 1.18M 5m14s\n187700K .......... .......... .......... .......... .......... 35% 1.18M 5m14s\n187750K .......... .......... .......... .......... .......... 35% 1.19M 5m14s\n187800K .......... .......... .......... .......... .......... 35% 1.20M 5m14s\n187850K .......... .......... .......... .......... .......... 35% 1.19M 5m14s\n187900K .......... .......... .......... .......... .......... 35% 1.21M 5m14s\n187950K .......... .......... .......... .......... .......... 35% 908K 5m14s\n188000K .......... .......... .......... .......... .......... 35% 1.16M 5m14s\n188050K .......... .......... .......... .......... .......... 35% 1.20M 5m14s\n188100K .......... .......... .......... .......... .......... 35% 1.19M 5m14s\n188150K .......... .......... .......... .......... .......... 35% 1.19M 5m14s\n188200K .......... .......... .......... .......... .......... 35% 1.19M 5m13s\n188250K .......... .......... .......... .......... .......... 35% 1.05M 5m13s\n188300K .......... .......... .......... .......... .......... 35% 1.40M 5m13s\n188350K .......... .......... .......... .......... .......... 35% 880K 5m13s\n188400K .......... .......... .......... .......... .......... 35% 1.21M 5m13s\n188450K .......... .......... .......... .......... .......... 35% 1.19M 5m13s\n188500K .......... .......... .......... .......... .......... 35% 544K 5m13s\n188550K .......... .......... .......... .......... .......... 35% 1.19M 5m13s\n188600K .......... .......... .......... .......... .......... 35% 1.25M 5m13s\n188650K .......... .......... .......... .......... .......... 35% 1.17M 5m13s\n188700K .......... .......... .......... .......... .......... 35% 1.20M 5m13s\n188750K .......... .......... .......... .......... .......... 35% 898K 5m13s\n188800K .......... .......... .......... .......... .......... 35% 1.23M 5m13s\n188850K .......... .......... .......... .......... .......... 35% 1.18M 5m13s\n188900K .......... .......... .......... .......... .......... 35% 1.19M 5m13s\n188950K .......... .......... .......... .......... .......... 35% 1.15M 5m13s\n189000K .......... .......... .......... .......... .......... 35% 1.19M 5m13s\n189050K .......... .......... .......... .......... .......... 35% 1.17M 5m13s\n189100K .......... .......... .......... .......... .......... 35% 1.21M 5m13s\n189150K .......... .......... .......... .......... .......... 35% 921K 5m13s\n189200K .......... .......... .......... .......... .......... 35% 1.20M 5m13s\n189250K .......... .......... .......... .......... .......... 35% 1.16M 5m13s\n189300K .......... .......... .......... .......... .......... 35% 1.19M 5m12s\n189350K .......... .......... .......... .......... .......... 35% 1.21M 5m12s\n189400K .......... .......... .......... .......... .......... 35% 1.18M 5m12s\n189450K .......... .......... .......... .......... .......... 35% 1.12M 5m12s\n189500K .......... .......... .......... .......... .......... 35% 1.27M 5m12s\n189550K .......... .......... .......... .......... .......... 35% 896K 5m12s\n189600K .......... .......... .......... .......... .......... 35% 1.17M 5m12s\n189650K .......... .......... .......... .......... .......... 35% 1.24M 5m12s\n189700K .......... .......... .......... .......... .......... 35% 1.15M 5m12s\n189750K .......... .......... .......... .......... .......... 35% 1.22M 5m12s\n189800K .......... .......... .......... .......... .......... 35% 1.19M 5m12s\n189850K .......... .......... .......... .......... .......... 35% 1.18M 5m12s\n189900K .......... .......... .......... .......... .......... 35% 1.18M 5m12s\n189950K .......... .......... .......... .......... .......... 35% 907K 5m12s\n190000K .......... .......... .......... .......... .......... 35% 1.15M 5m12s\n190050K .......... .......... .......... .......... .......... 35% 1.21M 5m12s\n190100K .......... .......... .......... .......... .......... 35% 1.18M 5m12s\n190150K .......... .......... .......... .......... .......... 35% 1.18M 5m12s\n190200K .......... .......... .......... .......... .......... 35% 1.22M 5m12s\n190250K .......... .......... .......... .......... .......... 35% 119K 5m12s\n190300K .......... .......... .......... .......... .......... 35% 895K 5m12s\n190350K .......... .......... .......... .......... .......... 35% 884K 5m12s\n190400K .......... .......... .......... .......... .......... 35% 1.18M 5m12s\n190450K .......... .......... .......... .......... .......... 35% 1.20M 5m12s\n190500K .......... .......... .......... .......... .......... 35% 1.20M 5m12s\n190550K .......... .......... .......... .......... .......... 35% 1.20M 5m12s\n190600K .......... .......... .......... .......... .......... 35% 1.17M 5m12s\n190650K .......... .......... .......... .......... .......... 35% 1.21M 5m12s\n190700K .......... .......... .......... .......... .......... 35% 1.16M 5m12s\n190750K .......... .......... .......... .......... .......... 35% 905K 5m12s\n190800K .......... .......... .......... .......... .......... 35% 1.23M 5m12s\n190850K .......... .......... .......... .......... .......... 35% 1.19M 5m12s\n190900K .......... .......... .......... .......... .......... 35% 1.18M 5m12s\n190950K .......... .......... .......... .......... .......... 35% 1.18M 5m11s\n191000K .......... .......... .......... .......... .......... 35% 1.16M 5m11s\n191050K .......... .......... .......... .......... .......... 35% 1.16M 5m11s\n191100K .......... .......... .......... .......... .......... 35% 1.16M 5m11s\n191150K .......... .......... .......... .......... .......... 35% 933K 5m11s\n191200K .......... .......... .......... .......... .......... 35% 1.20M 5m11s\n191250K .......... .......... .......... .......... .......... 35% 1.12M 5m11s\n191300K .......... .......... .......... .......... .......... 35% 1.22M 5m11s\n191350K .......... .......... .......... .......... .......... 35% 1.24M 5m11s\n191400K .......... .......... .......... .......... .......... 35% 1.16M 5m11s\n191450K .......... .......... .......... .......... .......... 36% 1.21M 5m11s\n191500K .......... .......... .......... .......... .......... 36% 1.17M 5m11s\n191550K .......... .......... .......... .......... .......... 36% 887K 5m11s\n191600K .......... .......... .......... .......... .......... 36% 1.19M 5m11s\n191650K .......... .......... .......... .......... .......... 36% 1.19M 5m11s\n191700K .......... .......... .......... .......... .......... 36% 1.22M 5m11s\n191750K .......... .......... .......... .......... .......... 36% 1.12M 5m11s\n191800K .......... .......... .......... .......... .......... 36% 1.23M 5m11s\n191850K .......... .......... .......... .......... .......... 36% 1.16M 5m11s\n191900K .......... .......... .......... .......... .......... 36% 1.18M 5m11s\n191950K .......... .......... .......... .......... .......... 36% 926K 5m10s\n192000K .......... .......... .......... .......... .......... 36% 1.20M 5m10s\n192050K .......... .......... .......... .......... .......... 36% 1.19M 5m10s\n192100K .......... .......... .......... .......... .......... 36% 1.21M 5m10s\n192150K .......... .......... .......... .......... .......... 36% 1.19M 5m10s\n192200K .......... .......... .......... .......... .......... 36% 1.21M 5m10s\n192250K .......... .......... .......... .......... .......... 36% 1.19M 5m10s\n192300K .......... .......... .......... .......... .......... 36% 1.07M 5m10s\n192350K .......... .......... .......... .......... .......... 36% 988K 5m10s\n192400K .......... .......... .......... .......... .......... 36% 1.18M 5m10s\n192450K .......... .......... .......... .......... .......... 36% 921K 5m10s\n192500K .......... .......... .......... .......... .......... 36% 1.62M 5m10s\n192550K .......... .......... .......... .......... .......... 36% 1.27M 5m10s\n192600K .......... .......... .......... .......... .......... 36% 1.18M 5m10s\n192650K .......... .......... .......... .......... .......... 36% 1.19M 5m10s\n192700K .......... .......... .......... .......... .......... 36% 186K 5m10s\n192750K .......... .......... .......... .......... .......... 36% 84.6M 5m10s\n192800K .......... .......... .......... .......... .......... 36% 1.50M 5m10s\n192850K .......... .......... .......... .......... .......... 36% 57.2M 5m10s\n192900K .......... .......... .......... .......... .......... 36% 87.7M 5m10s\n192950K .......... .......... .......... .......... .......... 36% 1.03M 5m10s\n193000K .......... .......... .......... .......... .......... 36% 1.13M 5m10s\n193050K .......... .......... .......... .......... .......... 36% 208K 5m10s\n193100K .......... .......... .......... .......... .......... 36% 213M 5m10s\n193150K .......... .......... .......... .......... .......... 36% 123M 5m10s\n193200K .......... .......... .......... .......... .......... 36% 355M 5m9s\n193250K .......... .......... .......... .......... .......... 36% 309M 5m9s\n193300K .......... .......... .......... .......... .......... 36% 1018K 5m9s\n193350K .......... .......... .......... .......... .......... 36% 1.20M 5m9s\n193400K .......... .......... .......... .......... .......... 36% 1.20M 5m9s\n193450K .......... .......... .......... .......... .......... 36% 1.21M 5m9s\n193500K .......... .......... .......... .......... .......... 36% 1.15M 5m9s\n193550K .......... .......... .......... .......... .......... 36% 928K 5m9s\n193600K .......... .......... .......... .......... .......... 36% 1.13M 5m9s\n193650K .......... .......... .......... .......... .......... 36% 1.24M 5m9s\n193700K .......... .......... .......... .......... .......... 36% 1.14M 5m9s\n193750K .......... .......... .......... .......... .......... 36% 171K 5m9s\n193800K .......... .......... .......... .......... .......... 36% 5.67M 5m9s\n193850K .......... .......... .......... .......... .......... 36% 402M 5m9s\n193900K .......... .......... .......... .......... .......... 36% 133M 5m9s\n193950K .......... .......... .......... .......... .......... 36% 152M 5m9s\n194000K .......... .......... .......... .......... .......... 36% 3.15M 5m9s\n194050K .......... .......... .......... .......... .......... 36% 1.02M 5m9s\n194100K .......... .......... .......... .......... .......... 36% 1.28M 5m9s\n194150K .......... .......... .......... .......... .......... 36% 1.27M 5m9s\n194200K .......... .......... .......... .......... .......... 36% 1.16M 5m9s\n194250K .......... .......... .......... .......... .......... 36% 1.26M 5m8s\n194300K .......... .......... .......... .......... .......... 36% 1.13M 5m8s\n194350K .......... .......... .......... .......... .......... 36% 888K 5m8s\n194400K .......... .......... .......... .......... .......... 36% 1.21M 5m8s\n194450K .......... .......... .......... .......... .......... 36% 1.18M 5m8s\n194500K .......... .......... .......... .......... .......... 36% 1.21M 5m8s\n194550K .......... .......... .......... .......... .......... 36% 1.14M 5m8s\n194600K .......... .......... .......... .......... .......... 36% 1.21M 5m8s\n194650K .......... .......... .......... .......... .......... 36% 1.23M 5m8s\n194700K .......... .......... .......... .......... .......... 36% 1.15M 5m8s\n194750K .......... .......... .......... .......... .......... 36% 901K 5m8s\n194800K .......... .......... .......... .......... .......... 36% 1.22M 5m8s\n194850K .......... .......... .......... .......... .......... 36% 1.17M 5m8s\n194900K .......... .......... .......... .......... .......... 36% 1.14M 5m8s\n194950K .......... .......... .......... .......... .......... 36% 1.29M 5m8s\n195000K .......... .......... .......... .......... .......... 36% 1.18M 5m8s\n195050K .......... .......... .......... .......... .......... 36% 1.15M 5m8s\n195100K .......... .......... .......... .......... .......... 36% 1.20M 5m8s\n195150K .......... .......... .......... .......... .......... 36% 913K 5m8s\n195200K .......... .......... .......... .......... .......... 36% 1.21M 5m8s\n195250K .......... .......... .......... .......... .......... 36% 1.19M 5m7s\n195300K .......... .......... .......... .......... .......... 36% 1.20M 5m7s\n195350K .......... .......... .......... .......... .......... 36% 1.16M 5m7s\n195400K .......... .......... .......... .......... .......... 36% 1.10M 5m7s\n195450K .......... .......... .......... .......... .......... 36% 787K 5m7s\n195500K .......... .......... .......... .......... .......... 36% 184K 5m8s\n195550K .......... .......... .......... .......... .......... 36% 56.9M 5m8s\n195600K .......... .......... .......... .......... .......... 36% 146M 5m7s\n195650K .......... .......... .......... .......... .......... 36% 2.14M 5m7s\n195700K .......... .......... .......... .......... .......... 36% 76.8M 5m7s\n195750K .......... .......... .......... .......... .......... 36% 4.50M 5m7s\n195800K .......... .......... .......... .......... .......... 36% 1.16M 5m7s\n195850K .......... .......... .......... .......... .......... 36% 1.20M 5m7s\n195900K .......... .......... .......... .......... .......... 36% 1.15M 5m7s\n195950K .......... .......... .......... .......... .......... 36% 661K 5m7s\n196000K .......... .......... .......... .......... .......... 36% 1.36M 5m7s\n196050K .......... .......... .......... .......... .......... 36% 1.10M 5m7s\n196100K .......... .......... .......... .......... .......... 36% 1.15M 5m7s\n196150K .......... .......... .......... .......... .......... 36% 1.19M 5m7s\n196200K .......... .......... .......... .......... .......... 36% 1.19M 5m7s\n196250K .......... .......... .......... .......... .......... 36% 931K 5m7s\n196300K .......... .......... .......... .......... .......... 36% 978K 5m7s\n196350K .......... .......... .......... .......... .......... 36% 941K 5m7s\n196400K .......... .......... .......... .......... .......... 36% 1.15M 5m6s\n196450K .......... .......... .......... .......... .......... 36% 937K 5m6s\n196500K .......... .......... .......... .......... .......... 36% 983K 5m6s\n196550K .......... .......... .......... .......... .......... 36% 1.11M 5m6s\n196600K .......... .......... .......... .......... .......... 36% 855K 5m6s\n196650K .......... .......... .......... .......... .......... 36% 1022K 5m6s\n196700K .......... .......... .......... .......... .......... 36% 1.18M 5m6s\n196750K .......... .......... .......... .......... .......... 37% 920K 5m6s\n196800K .......... .......... .......... .......... .......... 37% 1.08M 5m6s\n196850K .......... .......... .......... .......... .......... 37% 1.07M 5m6s\n196900K .......... .......... .......... .......... .......... 37% 890K 5m6s\n196950K .......... .......... .......... .......... .......... 37% 1001K 5m6s\n197000K .......... .......... .......... .......... .......... 37% 1.01M 5m6s\n197050K .......... .......... .......... .......... .......... 37% 620K 5m6s\n197100K .......... .......... .......... .......... .......... 37% 1.51M 5m6s\n197150K .......... .......... .......... .......... .......... 37% 920K 5m6s\n197200K .......... .......... .......... .......... .......... 37% 1.20M 5m6s\n197250K .......... .......... .......... .......... .......... 37% 1.18M 5m6s\n197300K .......... .......... .......... .......... .......... 37% 1.16M 5m6s\n197350K .......... .......... .......... .......... .......... 37% 1.18M 5m6s\n197400K .......... .......... .......... .......... .......... 37% 1.22M 5m6s\n197450K .......... .......... .......... .......... .......... 37% 1.15M 5m6s\n197500K .......... .......... .......... .......... .......... 37% 1.02M 5m6s\n197550K .......... .......... .......... .......... .......... 37% 723K 5m6s\n197600K .......... .......... .......... .......... .......... 37% 1.27M 5m6s\n197650K .......... .......... .......... .......... .......... 37% 1.14M 5m5s\n197700K .......... .......... .......... .......... .......... 37% 1.02M 5m5s\n197750K .......... .......... .......... .......... .......... 37% 1.16M 5m5s\n197800K .......... .......... .......... .......... .......... 37% 1.14M 5m5s\n197850K .......... .......... .......... .......... .......... 37% 854K 5m5s\n197900K .......... .......... .......... .......... .......... 37% 988K 5m5s\n197950K .......... .......... .......... .......... .......... 37% 856K 5m5s\n198000K .......... .......... .......... .......... .......... 37% 1.18M 5m5s\n198050K .......... .......... .......... .......... .......... 37% 1.01M 5m5s\n198100K .......... .......... .......... .......... .......... 37% 1.18M 5m5s\n198150K .......... .......... .......... .......... .......... 37% 1.05M 5m5s\n198200K .......... .......... .......... .......... .......... 37% 902K 5m5s\n198250K .......... .......... .......... .......... .......... 37% 1.15M 5m5s\n198300K .......... .......... .......... .......... .......... 37% 910K 5m5s\n198350K .......... .......... .......... .......... .......... 37% 891K 5m5s\n198400K .......... .......... .......... .......... .......... 37% 1.25M 5m5s\n198450K .......... .......... .......... .......... .......... 37% 1012K 5m5s\n198500K .......... .......... .......... .......... .......... 37% 1.44M 5m5s\n198550K .......... .......... .......... .......... .......... 37% 1.15M 5m5s\n198600K .......... .......... .......... .......... .......... 37% 1.22M 5m5s\n198650K .......... .......... .......... .......... .......... 37% 1.15M 5m5s\n198700K .......... .......... .......... .......... .......... 37% 1.10M 5m5s\n198750K .......... .......... .......... .......... .......... 37% 922K 5m5s\n198800K .......... .......... .......... .......... .......... 37% 1.15M 5m4s\n198850K .......... .......... .......... .......... .......... 37% 1.22M 5m4s\n198900K .......... .......... .......... .......... .......... 37% 1.18M 5m4s\n198950K .......... .......... .......... .......... .......... 37% 1.21M 5m4s\n199000K .......... .......... .......... .......... .......... 37% 1.17M 5m4s\n199050K .......... .......... .......... .......... .......... 37% 1.06M 5m4s\n199100K .......... .......... .......... .......... .......... 37% 763K 5m4s\n199150K .......... .......... .......... .......... .......... 37% 910K 5m4s\n199200K .......... .......... .......... .......... .......... 37% 2.18M 5m4s\n199250K .......... .......... .......... .......... .......... 37% 1.21M 5m4s\n199300K .......... .......... .......... .......... .......... 37% 1.22M 5m4s\n199350K .......... .......... .......... .......... .......... 37% 1.19M 5m4s\n199400K .......... .......... .......... .......... .......... 37% 1.12M 5m4s\n199450K .......... .......... .......... .......... .......... 37% 1.22M 5m4s\n199500K .......... .......... .......... .......... .......... 37% 1.20M 5m4s\n199550K .......... .......... .......... .......... .......... 37% 922K 5m4s\n199600K .......... .......... .......... .......... .......... 37% 1.18M 5m4s\n199650K .......... .......... .......... .......... .......... 37% 1.19M 5m4s\n199700K .......... .......... .......... .......... .......... 37% 1.20M 5m4s\n199750K .......... .......... .......... .......... .......... 37% 1.16M 5m3s\n199800K .......... .......... .......... .......... .......... 37% 1.23M 5m3s\n199850K .......... .......... .......... .......... .......... 37% 948K 5m3s\n199900K .......... .......... .......... .......... .......... 37% 1.09M 5m3s\n199950K .......... .......... .......... .......... .......... 37% 915K 5m3s\n200000K .......... .......... .......... .......... .......... 37% 1.15M 5m3s\n200050K .......... .......... .......... .......... .......... 37% 1.21M 5m3s\n200100K .......... .......... .......... .......... .......... 37% 1.14M 5m3s\n200150K .......... .......... .......... .......... .......... 37% 1.15M 5m3s\n200200K .......... .......... .......... .......... .......... 37% 1.15M 5m3s\n200250K .......... .......... .......... .......... .......... 37% 1.19M 5m3s\n200300K .......... .......... .......... .......... .......... 37% 959K 5m3s\n200350K .......... .......... .......... .......... .......... 37% 852K 5m3s\n200400K .......... .......... .......... .......... .......... 37% 1.17M 5m3s\n200450K .......... .......... .......... .......... .......... 37% 1019K 5m3s\n200500K .......... .......... .......... .......... .......... 37% 1018K 5m3s\n200550K .......... .......... .......... .......... .......... 37% 1.16M 5m3s\n200600K .......... .......... .......... .......... .......... 37% 1.16M 5m3s\n200650K .......... .......... .......... .......... .......... 37% 1.15M 5m3s\n200700K .......... .......... .......... .......... .......... 37% 872K 5m3s\n200750K .......... .......... .......... .......... .......... 37% 870K 5m3s\n200800K .......... .......... .......... .......... .......... 37% 897K 5m3s\n200850K .......... .......... .......... .......... .......... 37% 1.05M 5m3s\n200900K .......... .......... .......... .......... .......... 37% 994K 5m3s\n200950K .......... .......... .......... .......... .......... 37% 1.25M 5m2s\n201000K .......... .......... .......... .......... .......... 37% 1.14M 5m2s\n201050K .......... .......... .......... .......... .......... 37% 1.22M 5m2s\n201100K .......... .......... .......... .......... .......... 37% 1.19M 5m2s\n201150K .......... .......... .......... .......... .......... 37% 821K 5m2s\n201200K .......... .......... .......... .......... .......... 37% 1.14M 5m2s\n201250K .......... .......... .......... .......... .......... 37% 1.12M 5m2s\n201300K .......... .......... .......... .......... .......... 37% 1.13M 5m2s\n201350K .......... .......... .......... .......... .......... 37% 913K 5m2s\n201400K .......... .......... .......... .......... .......... 37% 1.70M 5m2s\n201450K .......... .......... .......... .......... .......... 37% 1.18M 5m2s\n201500K .......... .......... .......... .......... .......... 37% 1.16M 5m2s\n201550K .......... .......... .......... .......... .......... 37% 807K 5m2s\n201600K .......... .......... .......... .......... .......... 37% 1.10M 5m2s\n201650K .......... .......... .......... .......... .......... 37% 1.06M 5m2s\n201700K .......... .......... .......... .......... .......... 37% 760K 5m2s\n201750K .......... .......... .......... .......... .......... 37% 898K 5m2s\n201800K .......... .......... .......... .......... .......... 37% 1.20M 5m2s\n201850K .......... .......... .......... .......... .......... 37% 1.18M 5m2s\n201900K .......... .......... .......... .......... .......... 37% 965K 5m2s\n201950K .......... .......... .......... .......... .......... 37% 912K 5m2s\n202000K .......... .......... .......... .......... .......... 37% 1.19M 5m2s\n202050K .......... .......... .......... .......... .......... 37% 1.06M 5m1s\n202100K .......... .......... .......... .......... .......... 38% 1.21M 5m1s\n202150K .......... .......... .......... .......... .......... 38% 1.07M 5m1s\n202200K .......... .......... .......... .......... .......... 38% 1.20M 5m1s\n202250K .......... .......... .......... .......... .......... 38% 1.18M 5m1s\n202300K .......... .......... .......... .......... .......... 38% 143K 5m2s\n202350K .......... .......... .......... .......... .......... 38% 96.5M 5m2s\n202400K .......... .......... .......... .......... .......... 38% 1.91M 5m2s\n202450K .......... .......... .......... .......... .......... 38% 480K 5m2s\n202500K .......... .......... .......... .......... .......... 38% 55.9M 5m1s\n202550K .......... .......... .......... .......... .......... 38% 74.0M 5m1s\n202600K .......... .......... .......... .......... .......... 38% 131M 5m1s\n202650K .......... .......... .......... .......... .......... 38% 950K 5m1s\n202700K .......... .......... .......... .......... .......... 38% 680K 5m1s\n202750K .......... .......... .......... .......... .......... 38% 699K 5m1s\n202800K .......... .......... .......... .......... .......... 38% 129K 5m2s\n202850K .......... .......... .......... .......... .......... 38% 1.23M 5m2s\n202900K .......... .......... .......... .......... .......... 38% 5.92M 5m2s\n202950K .......... .......... .......... .......... .......... 38% 564K 5m2s\n203000K .......... .......... .......... .......... .......... 38% 823K 5m2s\n203050K .......... .......... .......... .......... .......... 38% 126M 5m1s\n203100K .......... .......... .......... .......... .......... 38% 80.0M 5m1s\n203150K .......... .......... .......... .......... .......... 38% 673K 5m1s\n203200K .......... .......... .......... .......... .......... 38% 744K 5m1s\n203250K .......... .......... .......... .......... .......... 38% 1004K 5m1s\n203300K .......... .......... .......... .......... .......... 38% 778K 5m1s\n203350K .......... .......... .......... .......... .......... 38% 867K 5m1s\n203400K .......... .......... .......... .......... .......... 38% 805K 5m1s\n203450K .......... .......... .......... .......... .......... 38% 788K 5m1s\n203500K .......... .......... .......... .......... .......... 38% 988K 5m1s\n203550K .......... .......... .......... .......... .......... 38% 714K 5m1s\n203600K .......... .......... .......... .......... .......... 38% 1.11M 5m1s\n203650K .......... .......... .......... .......... .......... 38% 1.21M 5m1s\n203700K .......... .......... .......... .......... .......... 38% 1.19M 5m1s\n203750K .......... .......... .......... .......... .......... 38% 1.18M 5m1s\n203800K .......... .......... .......... .......... .......... 38% 948K 5m1s\n203850K .......... .......... .......... .......... .......... 38% 201K 5m1s\n203900K .......... .......... .......... .......... .......... 38% 106M 5m1s\n203950K .......... .......... .......... .......... .......... 38% 78.4M 5m1s\n204000K .......... .......... .......... .......... .......... 38% 134M 5m1s\n204050K .......... .......... .......... .......... .......... 38% 114M 5m1s\n204100K .......... .......... .......... .......... .......... 38% 1.06M 5m1s\n204150K .......... .......... .......... .......... .......... 38% 1.13M 5m1s\n204200K .......... .......... .......... .......... .......... 38% 1.14M 5m1s\n204250K .......... .......... .......... .......... .......... 38% 1.05M 5m0s\n204300K .......... .......... .......... .......... .......... 38% 1.21M 5m0s\n204350K .......... .......... .......... .......... .......... 38% 785K 5m0s\n204400K .......... .......... .......... .......... .......... 38% 1.18M 5m0s\n204450K .......... .......... .......... .......... .......... 38% 1.19M 5m0s\n204500K .......... .......... .......... .......... .......... 38% 1009K 5m0s\n204550K .......... .......... .......... .......... .......... 38% 1.09M 5m0s\n204600K .......... .......... .......... .......... .......... 38% 1.13M 5m0s\n204650K .......... .......... .......... .......... .......... 38% 1.07M 5m0s\n204700K .......... .......... .......... .......... .......... 38% 1.19M 5m0s\n204750K .......... .......... .......... .......... .......... 38% 902K 5m0s\n204800K .......... .......... .......... .......... .......... 38% 1.19M 5m0s\n204850K .......... .......... .......... .......... .......... 38% 1.16M 5m0s\n204900K .......... .......... .......... .......... .......... 38% 155K 5m0s\n204950K .......... .......... .......... .......... .......... 38% 358M 5m0s\n205000K .......... .......... .......... .......... .......... 38% 402M 5m0s\n205050K .......... .......... .......... .......... .......... 38% 1.50M 5m0s\n205100K .......... .......... .......... .......... .......... 38% 141M 5m0s\n205150K .......... .......... .......... .......... .......... 38% 360M 5m0s\n205200K .......... .......... .......... .......... .......... 38% 623K 5m0s\n205250K .......... .......... .......... .......... .......... 38% 1.17M 5m0s\n205300K .......... .......... .......... .......... .......... 38% 874K 5m0s\n205350K .......... .......... .......... .......... .......... 38% 1.12M 5m0s\n205400K .......... .......... .......... .......... .......... 38% 944K 5m0s\n205450K .......... .......... .......... .......... .......... 38% 1.13M 5m0s\n205500K .......... .......... .......... .......... .......... 38% 1.19M 5m0s\n205550K .......... .......... .......... .......... .......... 38% 860K 5m0s\n205600K .......... .......... .......... .......... .......... 38% 1.25M 4m59s\n205650K .......... .......... .......... .......... .......... 38% 160K 5m0s\n205700K .......... .......... .......... .......... .......... 38% 73.1M 5m0s\n205750K .......... .......... .......... .......... .......... 38% 391M 5m0s\n205800K .......... .......... .......... .......... .......... 38% 494K 5m0s\n205850K .......... .......... .......... .......... .......... 38% 136M 5m0s\n205900K .......... .......... .......... .......... .......... 38% 214M 4m59s\n205950K .......... .......... .......... .......... .......... 38% 815K 4m59s\n206000K .......... .......... .......... .......... .......... 38% 654K 4m59s\n206050K .......... .......... .......... .......... .......... 38% 868K 4m59s\n206100K .......... .......... .......... .......... .......... 38% 227K 5m0s\n206150K .......... .......... .......... .......... .......... 38% 43.0M 4m59s\n206200K .......... .......... .......... .......... .......... 38% 129M 4m59s\n206250K .......... .......... .......... .......... .......... 38% 155M 4m59s\n206300K .......... .......... .......... .......... .......... 38% 6.20K 5m12s\n206350K .......... .......... .......... .......... .......... 38% 922K 5m12s\n206400K .......... .......... .......... .......... .......... 38% 1.20M 5m12s\n206450K .......... .......... .......... .......... .......... 38% 1.10M 5m12s\n206500K .......... .......... .......... .......... .......... 38% 811K 5m12s\n206550K .......... .......... .......... .......... .......... 38% 1.13M 5m12s\n206600K .......... .......... .......... .......... .......... 38% 1.22M 5m12s\n206650K .......... .......... .......... .......... .......... 38% 982K 5m11s\n206700K .......... .......... .......... .......... .......... 38% 1.46M 5m11s\n206750K .......... .......... .......... .......... .......... 38% 967K 5m11s\n206800K .......... .......... .......... .......... .......... 38% 1.12M 5m11s\n206850K .......... .......... .......... .......... .......... 38% 1.17M 5m11s\n206900K .......... .......... .......... .......... .......... 38% 1.19M 5m11s\n206950K .......... .......... .......... .......... .......... 38% 1.27M 5m11s\n207000K .......... .......... .......... .......... .......... 38% 1.14M 5m11s\n207050K .......... .......... .......... .......... .......... 38% 1.20M 5m11s\n207100K .......... .......... .......... .......... .......... 38% 1.17M 5m11s\n207150K .......... .......... .......... .......... .......... 38% 882K 5m11s\n207200K .......... .......... .......... .......... .......... 38% 1.06M 5m11s\n207250K .......... .......... .......... .......... .......... 38% 1.45M 5m11s\n207300K .......... .......... .......... .......... .......... 38% 1.18M 5m11s\n207350K .......... .......... .......... .......... .......... 38% 1.08M 5m11s\n207400K .......... .......... .......... .......... .......... 39% 1.25M 5m11s\n207450K .......... .......... .......... .......... .......... 39% 1.18M 5m11s\n207500K .......... .......... .......... .......... .......... 39% 1.05M 5m11s\n207550K .......... .......... .......... .......... .......... 39% 964K 5m10s\n207600K .......... .......... .......... .......... .......... 39% 1.22M 5m10s\n207650K .......... .......... .......... .......... .......... 39% 1.15M 5m10s\n207700K .......... .......... .......... .......... .......... 39% 1.28M 5m10s\n207750K .......... .......... .......... .......... .......... 39% 1.16M 5m10s\n207800K .......... .......... .......... .......... .......... 39% 1.18M 5m10s\n207850K .......... .......... .......... .......... .......... 39% 1.14M 5m10s\n207900K .......... .......... .......... .......... .......... 39% 1.22M 5m10s\n207950K .......... .......... .......... .......... .......... 39% 613K 5m10s\n208000K .......... .......... .......... .......... .......... 39% 1.15M 5m10s\n208050K .......... .......... .......... .......... .......... 39% 1.16M 5m10s\n208100K .......... .......... .......... .......... .......... 39% 907K 5m10s\n208150K .......... .......... .......... .......... .......... 39% 1.01M 5m10s\n208200K .......... .......... .......... .......... .......... 39% 1.14M 5m10s\n208250K .......... .......... .......... .......... .......... 39% 1.04M 5m10s\n208300K .......... .......... .......... .......... .......... 39% 1.19M 5m10s\n208350K .......... .......... .......... .......... .......... 39% 639K 5m10s\n208400K .......... .......... .......... .......... .......... 39% 987K 5m10s\n208450K .......... .......... .......... .......... .......... 39% 1.14M 5m10s\n208500K .......... .......... .......... .......... .......... 39% 739K 5m10s\n208550K .......... .......... .......... .......... .......... 39% 165K 5m10s\n208600K .......... .......... .......... .......... .......... 39% 101M 5m10s\n208650K .......... .......... .......... .......... .......... 39% 160M 5m10s\n208700K .......... .......... .......... .......... .......... 39% 1.40M 5m10s\n208750K .......... .......... .......... .......... .......... 39% 91.6M 5m10s\n208800K .......... .......... .......... .......... .......... 39% 732K 5m10s\n208850K .......... .......... .......... .......... .......... 39% 1.11M 5m9s\n208900K .......... .......... .......... .......... .......... 39% 1.14M 5m9s\n208950K .......... .......... .......... .......... .......... 39% 1.20M 5m9s\n209000K .......... .......... .......... .......... .......... 39% 1.18M 5m9s\n209050K .......... .......... .......... .......... .......... 39% 1.13M 5m9s\n209100K .......... .......... .......... .......... .......... 39% 1.16M 5m9s\n209150K .......... .......... .......... .......... .......... 39% 951K 5m9s\n209200K .......... .......... .......... .......... .......... 39% 1.08M 5m9s\n209250K .......... .......... .......... .......... .......... 39% 1.21M 5m9s\n209300K .......... .......... .......... .......... .......... 39% 1.18M 5m9s\n209350K .......... .......... .......... .......... .......... 39% 1.14M 5m9s\n209400K .......... .......... .......... .......... .......... 39% 1.09M 5m9s\n209450K .......... .......... .......... .......... .......... 39% 1.18M 5m9s\n209500K .......... .......... .......... .......... .......... 39% 1.16M 5m9s\n209550K .......... .......... .......... .......... .......... 39% 189K 5m9s\n209600K .......... .......... .......... .......... .......... 39% 91.6M 5m9s\n209650K .......... .......... .......... .......... .......... 39% 154M 5m9s\n209700K .......... .......... .......... .......... .......... 39% 1.38M 5m9s\n209750K .......... .......... .......... .......... .......... 39% 95.6M 5m9s\n209800K .......... .......... .......... .......... .......... 39% 117M 5m8s\n209850K .......... .......... .......... .......... .......... 39% 701K 5m8s\n209900K .......... .......... .......... .......... .......... 39% 1.24M 5m8s\n209950K .......... .......... .......... .......... .......... 39% 900K 5m8s\n210000K .......... .......... .......... .......... .......... 39% 1.16M 5m8s\n210050K .......... .......... .......... .......... .......... 39% 1.19M 5m8s\n210100K .......... .......... .......... .......... .......... 39% 1.23M 5m8s\n210150K .......... .......... .......... .......... .......... 39% 1.21M 5m8s\n210200K .......... .......... .......... .......... .......... 39% 1.09M 5m8s\n210250K .......... .......... .......... .......... .......... 39% 1.25M 5m8s\n210300K .......... .......... .......... .......... .......... 39% 1.25M 5m8s\n210350K .......... .......... .......... .......... .......... 39% 880K 5m8s\n210400K .......... .......... .......... .......... .......... 39% 1.23M 5m8s\n210450K .......... .......... .......... .......... .......... 39% 1.15M 5m8s\n210500K .......... .......... .......... .......... .......... 39% 211K 5m8s\n210550K .......... .......... .......... .......... .......... 39% 9.67M 5m8s\n210600K .......... .......... .......... .......... .......... 39% 16.1M 5m8s\n210650K .......... .......... .......... .......... .......... 39% 17.0M 5m8s\n210700K .......... .......... .......... .......... .......... 39% 24.2M 5m8s\n210750K .......... .......... .......... .......... .......... 39% 1.73M 5m7s\n210800K .......... .......... .......... .......... .......... 39% 1.21M 5m7s\n210850K .......... .......... .......... .......... .......... 39% 1.18M 5m7s\n210900K .......... .......... .......... .......... .......... 39% 1.19M 5m7s\n210950K .......... .......... .......... .......... .......... 39% 1.23M 5m7s\n211000K .......... .......... .......... .......... .......... 39% 1.02M 5m7s\n211050K .......... .......... .......... .......... .......... 39% 1.38M 5m7s\n211100K .......... .......... .......... .......... .......... 39% 1.12M 5m7s\n211150K .......... .......... .......... .......... .......... 39% 973K 5m7s\n211200K .......... .......... .......... .......... .......... 39% 1.04M 5m7s\n211250K .......... .......... .......... .......... .......... 39% 1.40M 5m7s\n211300K .......... .......... .......... .......... .......... 39% 1.16M 5m7s\n211350K .......... .......... .......... .......... .......... 39% 1.15M 5m7s\n211400K .......... .......... .......... .......... .......... 39% 1.25M 5m7s\n211450K .......... .......... .......... .......... .......... 39% 1.15M 5m7s\n211500K .......... .......... .......... .......... .......... 39% 1.20M 5m7s\n211550K .......... .......... .......... .......... .......... 39% 872K 5m7s\n211600K .......... .......... .......... .......... .......... 39% 1.23M 5m7s\n211650K .......... .......... .......... .......... .......... 39% 1.22M 5m6s\n211700K .......... .......... .......... .......... .......... 39% 1.19M 5m6s\n211750K .......... .......... .......... .......... .......... 39% 1.13M 5m6s\n211800K .......... .......... .......... .......... .......... 39% 1.19M 5m6s\n211850K .......... .......... .......... .......... .......... 39% 170K 5m7s\n211900K .......... .......... .......... .......... .......... 39% 126M 5m7s\n211950K .......... .......... .......... .......... .......... 39% 389M 5m6s\n212000K .......... .......... .......... .......... .......... 39% 1.48M 5m6s\n212050K .......... .......... .......... .......... .......... 39% 68.7M 5m6s\n212100K .......... .......... .......... .......... .......... 39% 304M 5m6s\n212150K .......... .......... .......... .......... .......... 39% 745K 5m6s\n212200K .......... .......... .......... .......... .......... 39% 1.10M 5m6s\n212250K .......... .......... .......... .......... .......... 39% 1.30M 5m6s\n212300K .......... .......... .......... .......... .......... 39% 1.15M 5m6s\n212350K .......... .......... .......... .......... .......... 39% 896K 5m6s\n212400K .......... .......... .......... .......... .......... 39% 1.19M 5m6s\n212450K .......... .......... .......... .......... .......... 39% 1.24M 5m6s\n212500K .......... .......... .......... .......... .......... 39% 1.24M 5m6s\n212550K .......... .......... .......... .......... .......... 39% 1.16M 5m6s\n212600K .......... .......... .......... .......... .......... 39% 1.16M 5m6s\n212650K .......... .......... .......... .......... .......... 39% 1.26M 5m6s\n212700K .......... .......... .......... .......... .......... 40% 1.12M 5m5s\n212750K .......... .......... .......... .......... .......... 40% 908K 5m5s\n212800K .......... .......... .......... .......... .......... 40% 203K 5m6s\n212850K .......... .......... .......... .......... .......... 40% 27.9M 5m6s\n212900K .......... .......... .......... .......... .......... 40% 23.4M 5m5s\n212950K .......... .......... .......... .......... .......... 40% 15.0M 5m5s\n213000K .......... .......... .......... .......... .......... 40% 250M 5m5s\n213050K .......... .......... .......... .......... .......... 40% 2.58M 5m5s\n213100K .......... .......... .......... .......... .......... 40% 1.13M 5m5s\n213150K .......... .......... .......... .......... .......... 40% 990K 5m5s\n213200K .......... .......... .......... .......... .......... 40% 1.19M 5m5s\n213250K .......... .......... .......... .......... .......... 40% 1.20M 5m5s\n213300K .......... .......... .......... .......... .......... 40% 1.18M 5m5s\n213350K .......... .......... .......... .......... .......... 40% 1.21M 5m5s\n213400K .......... .......... .......... .......... .......... 40% 1.19M 5m5s\n213450K .......... .......... .......... .......... .......... 40% 1.19M 5m5s\n213500K .......... .......... .......... .......... .......... 40% 1.19M 5m5s\n213550K .......... .......... .......... .......... .......... 40% 879K 5m5s\n213600K .......... .......... .......... .......... .......... 40% 1.26M 5m5s\n213650K .......... .......... .......... .......... .......... 40% 1.18M 5m4s\n213700K .......... .......... .......... .......... .......... 40% 1.00M 5m4s\n213750K .......... .......... .......... .......... .......... 40% 1.37M 5m4s\n213800K .......... .......... .......... .......... .......... 40% 1.19M 5m4s\n213850K .......... .......... .......... .......... .......... 40% 1.20M 5m4s\n213900K .......... .......... .......... .......... .......... 40% 1.18M 5m4s\n213950K .......... .......... .......... .......... .......... 40% 906K 5m4s\n214000K .......... .......... .......... .......... .......... 40% 1.22M 5m4s\n214050K .......... .......... .......... .......... .......... 40% 213K 5m4s\n214100K .......... .......... .......... .......... .......... 40% 441M 5m4s\n214150K .......... .......... .......... .......... .......... 40% 25.7M 5m4s\n214200K .......... .......... .......... .......... .......... 40% 31.7M 5m4s\n214250K .......... .......... .......... .......... .......... 40% 325M 5m4s\n214300K .......... .......... .......... .......... .......... 40% 1.39M 5m4s\n214350K .......... .......... .......... .......... .......... 40% 957K 5m4s\n214400K .......... .......... .......... .......... .......... 40% 1.17M 5m4s\n214450K .......... .......... .......... .......... .......... 40% 1.14M 5m4s\n214500K .......... .......... .......... .......... .......... 40% 1.22M 5m4s\n214550K .......... .......... .......... .......... .......... 40% 1.20M 5m3s\n214600K .......... .......... .......... .......... .......... 40% 1.18M 5m3s\n214650K .......... .......... .......... .......... .......... 40% 1.16M 5m3s\n214700K .......... .......... .......... .......... .......... 40% 1.19M 5m3s\n214750K .......... .......... .......... .......... .......... 40% 879K 5m3s\n214800K .......... .......... .......... .......... .......... 40% 1.27M 5m3s\n214850K .......... .......... .......... .......... .......... 40% 1.18M 5m3s\n214900K .......... .......... .......... .......... .......... 40% 1.14M 5m3s\n214950K .......... .......... .......... .......... .......... 40% 1.23M 5m3s\n215000K .......... .......... .......... .......... .......... 40% 1.19M 5m3s\n215050K .......... .......... .......... .......... .......... 40% 1.17M 5m3s\n215100K .......... .......... .......... .......... .......... 40% 1.22M 5m3s\n215150K .......... .......... .......... .......... .......... 40% 937K 5m3s\n215200K .......... .......... .......... .......... .......... 40% 1.17M 5m3s\n215250K .......... .......... .......... .......... .......... 40% 1.18M 5m3s\n215300K .......... .......... .......... .......... .......... 40% 1.21M 5m3s\n215350K .......... .......... .......... .......... .......... 40% 1.18M 5m3s\n215400K .......... .......... .......... .......... .......... 40% 1.18M 5m3s\n215450K .......... .......... .......... .......... .......... 40% 1.19M 5m2s\n215500K .......... .......... .......... .......... .......... 40% 1.20M 5m2s\n215550K .......... .......... .......... .......... .......... 40% 908K 5m2s\n215600K .......... .......... .......... .......... .......... 40% 1.19M 5m2s\n215650K .......... .......... .......... .......... .......... 40% 1.18M 5m2s\n215700K .......... .......... .......... .......... .......... 40% 1.18M 5m2s\n215750K .......... .......... .......... .......... .......... 40% 1.23M 5m2s\n215800K .......... .......... .......... .......... .......... 40% 1.17M 5m2s\n215850K .......... .......... .......... .......... .......... 40% 1.22M 5m2s\n215900K .......... .......... .......... .......... .......... 40% 1.15M 5m2s\n215950K .......... .......... .......... .......... .......... 40% 894K 5m2s\n216000K .......... .......... .......... .......... .......... 40% 1.17M 5m2s\n216050K .......... .......... .......... .......... .......... 40% 1.23M 5m2s\n216100K .......... .......... .......... .......... .......... 40% 1.20M 5m2s\n216150K .......... .......... .......... .......... .......... 40% 1.19M 5m2s\n216200K .......... .......... .......... .......... .......... 40% 1.16M 5m2s\n216250K .......... .......... .......... .......... .......... 40% 1.16M 5m2s\n216300K .......... .......... .......... .......... .......... 40% 1.21M 5m2s\n216350K .......... .......... .......... .......... .......... 40% 924K 5m2s\n216400K .......... .......... .......... .......... .......... 40% 1.13M 5m1s\n216450K .......... .......... .......... .......... .......... 40% 1.26M 5m1s\n216500K .......... .......... .......... .......... .......... 40% 1.09M 5m1s\n216550K .......... .......... .......... .......... .......... 40% 1.29M 5m1s\n216600K .......... .......... .......... .......... .......... 40% 1.20M 5m1s\n216650K .......... .......... .......... .......... .......... 40% 1.18M 5m1s\n216700K .......... .......... .......... .......... .......... 40% 1.20M 5m1s\n216750K .......... .......... .......... .......... .......... 40% 905K 5m1s\n216800K .......... .......... .......... .......... .......... 40% 1.21M 5m1s\n216850K .......... .......... .......... .......... .......... 40% 1.18M 5m1s\n216900K .......... .......... .......... .......... .......... 40% 1.13M 5m1s\n216950K .......... .......... .......... .......... .......... 40% 1.27M 5m1s\n217000K .......... .......... .......... .......... .......... 40% 1.18M 5m1s\n217050K .......... .......... .......... .......... .......... 40% 1.18M 5m1s\n217100K .......... .......... .......... .......... .......... 40% 1.13M 5m1s\n217150K .......... .......... .......... .......... .......... 40% 939K 5m1s\n217200K .......... .......... .......... .......... .......... 40% 1.18M 5m1s\n217250K .......... .......... .......... .......... .......... 40% 1.19M 5m1s\n217300K .......... .......... .......... .......... .......... 40% 1.21M 5m0s\n217350K .......... .......... .......... .......... .......... 40% 1.17M 5m0s\n217400K .......... .......... .......... .......... .......... 40% 1.18M 5m0s\n217450K .......... .......... .......... .......... .......... 40% 1.20M 5m0s\n217500K .......... .......... .......... .......... .......... 40% 1.15M 5m0s\n217550K .......... .......... .......... .......... .......... 40% 929K 5m0s\n217600K .......... .......... .......... .......... .......... 40% 1.18M 5m0s\n217650K .......... .......... .......... .......... .......... 40% 1.18M 5m0s\n217700K .......... .......... .......... .......... .......... 40% 1.17M 5m0s\n217750K .......... .......... .......... .......... .......... 40% 1.19M 5m0s\n217800K .......... .......... .......... .......... .......... 40% 1.18M 5m0s\n217850K .......... .......... .......... .......... .......... 40% 1.19M 5m0s\n217900K .......... .......... .......... .......... .......... 40% 1.13M 5m0s\n217950K .......... .......... .......... .......... .......... 40% 933K 5m0s\n218000K .......... .......... .......... .......... .......... 40% 1.19M 5m0s\n218050K .......... .......... .......... .......... .......... 41% 1.17M 5m0s\n218100K .......... .......... .......... .......... .......... 41% 1023K 5m0s\n218150K .......... .......... .......... .......... .......... 41% 1.46M 5m0s\n218200K .......... .......... .......... .......... .......... 41% 1.20M 4m59s\n218250K .......... .......... .......... .......... .......... 41% 1.19M 4m59s\n218300K .......... .......... .......... .......... .......... 41% 1.10M 4m59s\n218350K .......... .......... .......... .......... .......... 41% 965K 4m59s\n218400K .......... .......... .......... .......... .......... 41% 1.19M 4m59s\n218450K .......... .......... .......... .......... .......... 41% 1.10M 4m59s\n218500K .......... .......... .......... .......... .......... 41% 1.29M 4m59s\n218550K .......... .......... .......... .......... .......... 41% 1.20M 4m59s\n218600K .......... .......... .......... .......... .......... 41% 1.19M 4m59s\n218650K .......... .......... .......... .......... .......... 41% 1.20M 4m59s\n218700K .......... .......... .......... .......... .......... 41% 1.11M 4m59s\n218750K .......... .......... .......... .......... .......... 41% 970K 4m59s\n218800K .......... .......... .......... .......... .......... 41% 1.20M 4m59s\n218850K .......... .......... .......... .......... .......... 41% 1.20M 4m59s\n218900K .......... .......... .......... .......... .......... 41% 1.18M 4m59s\n218950K .......... .......... .......... .......... .......... 41% 1.16M 4m59s\n219000K .......... .......... .......... .......... .......... 41% 1.14M 4m59s\n219050K .......... .......... .......... .......... .......... 41% 1.27M 4m59s\n219100K .......... .......... .......... .......... .......... 41% 1.18M 4m58s\n219150K .......... .......... .......... .......... .......... 41% 911K 4m58s\n219200K .......... .......... .......... .......... .......... 41% 1.12M 4m58s\n219250K .......... .......... .......... .......... .......... 41% 1.22M 4m58s\n219300K .......... .......... .......... .......... .......... 41% 1.20M 4m58s\n219350K .......... .......... .......... .......... .......... 41% 1.20M 4m58s\n219400K .......... .......... .......... .......... .......... 41% 1.18M 4m58s\n219450K .......... .......... .......... .......... .......... 41% 1.19M 4m58s\n219500K .......... .......... .......... .......... .......... 41% 1.21M 4m58s\n219550K .......... .......... .......... .......... .......... 41% 911K 4m58s\n219600K .......... .......... .......... .......... .......... 41% 1.15M 4m58s\n219650K .......... .......... .......... .......... .......... 41% 1.22M 4m58s\n219700K .......... .......... .......... .......... .......... 41% 1.14M 4m58s\n219750K .......... .......... .......... .......... .......... 41% 1.19M 4m58s\n219800K .......... .......... .......... .......... .......... 41% 1.19M 4m58s\n219850K .......... .......... .......... .......... .......... 41% 1.14M 4m58s\n219900K .......... .......... .......... .......... .......... 41% 1.18M 4m58s\n219950K .......... .......... .......... .......... .......... 41% 909K 4m58s\n220000K .......... .......... .......... .......... .......... 41% 1.15M 4m58s\n220050K .......... .......... .......... .......... .......... 41% 1.24M 4m57s\n220100K .......... .......... .......... .......... .......... 41% 1.22M 4m57s\n220150K .......... .......... .......... .......... .......... 41% 1.17M 4m57s\n220200K .......... .......... .......... .......... .......... 41% 1.16M 4m57s\n220250K .......... .......... .......... .......... .......... 41% 1.15M 4m57s\n220300K .......... .......... .......... .......... .......... 41% 1.27M 4m57s\n220350K .......... .......... .......... .......... .......... 41% 850K 4m57s\n220400K .......... .......... .......... .......... .......... 41% 1.27M 4m57s\n220450K .......... .......... .......... .......... .......... 41% 1.20M 4m57s\n220500K .......... .......... .......... .......... .......... 41% 1.17M 4m57s\n220550K .......... .......... .......... .......... .......... 41% 1.17M 4m57s\n220600K .......... .......... .......... .......... .......... 41% 1.08M 4m57s\n220650K .......... .......... .......... .......... .......... 41% 1.32M 4m57s\n220700K .......... .......... .......... .......... .......... 41% 1.13M 4m57s\n220750K .......... .......... .......... .......... .......... 41% 978K 4m57s\n220800K .......... .......... .......... .......... .......... 41% 1.19M 4m57s\n220850K .......... .......... .......... .......... .......... 41% 1.16M 4m57s\n220900K .......... .......... .......... .......... .......... 41% 1.21M 4m57s\n220950K .......... .......... .......... .......... .......... 41% 1.18M 4m56s\n221000K .......... .......... .......... .......... .......... 41% 1.17M 4m56s\n221050K .......... .......... .......... .......... .......... 41% 1.19M 4m56s\n221100K .......... .......... .......... .......... .......... 41% 1.17M 4m56s\n221150K .......... .......... .......... .......... .......... 41% 211K 4m57s\n221200K .......... .......... .......... .......... .......... 41% 160M 4m56s\n221250K .......... .......... .......... .......... .......... 41% 58.4M 4m56s\n221300K .......... .......... .......... .......... .......... 41% 156M 4m56s\n221350K .......... .......... .......... .......... .......... 41% 13.8M 4m56s\n221400K .......... .......... .......... .......... .......... 41% 1.04M 4m56s\n221450K .......... .......... .......... .......... .......... 41% 1.19M 4m56s\n221500K .......... .......... .......... .......... .......... 41% 1.18M 4m56s\n221550K .......... .......... .......... .......... .......... 41% 914K 4m56s\n221600K .......... .......... .......... .......... .......... 41% 1.16M 4m56s\n221650K .......... .......... .......... .......... .......... 41% 1.21M 4m56s\n221700K .......... .......... .......... .......... .......... 41% 1.18M 4m56s\n221750K .......... .......... .......... .......... .......... 41% 1.21M 4m56s\n221800K .......... .......... .......... .......... .......... 41% 1.20M 4m56s\n221850K .......... .......... .......... .......... .......... 41% 1.20M 4m56s\n221900K .......... .......... .......... .......... .......... 41% 1.07M 4m55s\n221950K .......... .......... .......... .......... .......... 41% 978K 4m55s\n222000K .......... .......... .......... .......... .......... 41% 1.19M 4m55s\n222050K .......... .......... .......... .......... .......... 41% 1.16M 4m55s\n222100K .......... .......... .......... .......... .......... 41% 1.20M 4m55s\n222150K .......... .......... .......... .......... .......... 41% 1.17M 4m55s\n222200K .......... .......... .......... .......... .......... 41% 1.25M 4m55s\n222250K .......... .......... .......... .......... .......... 41% 1.18M 4m55s\n222300K .......... .......... .......... .......... .......... 41% 1.16M 4m55s\n222350K .......... .......... .......... .......... .......... 41% 902K 4m55s\n222400K .......... .......... .......... .......... .......... 41% 1.16M 4m55s\n222450K .......... .......... .......... .......... .......... 41% 1.22M 4m55s\n222500K .......... .......... .......... .......... .......... 41% 1.19M 4m55s\n222550K .......... .......... .......... .......... .......... 41% 1.18M 4m55s\n222600K .......... .......... .......... .......... .......... 41% 1.12M 4m55s\n222650K .......... .......... .......... .......... .......... 41% 1.28M 4m55s\n222700K .......... .......... .......... .......... .......... 41% 1.18M 4m55s\n222750K .......... .......... .......... .......... .......... 41% 907K 4m55s\n222800K .......... .......... .......... .......... .......... 41% 1.19M 4m55s\n222850K .......... .......... .......... .......... .......... 41% 1.16M 4m54s\n222900K .......... .......... .......... .......... .......... 41% 1.21M 4m54s\n222950K .......... .......... .......... .......... .......... 41% 1.19M 4m54s\n223000K .......... .......... .......... .......... .......... 41% 1.20M 4m54s\n223050K .......... .......... .......... .......... .......... 41% 1.19M 4m54s\n223100K .......... .......... .......... .......... .......... 41% 1.22M 4m54s\n223150K .......... .......... .......... .......... .......... 41% 901K 4m54s\n223200K .......... .......... .......... .......... .......... 41% 1.10M 4m54s\n223250K .......... .......... .......... .......... .......... 41% 1.25M 4m54s\n223300K .......... .......... .......... .......... .......... 41% 1.23M 4m54s\n223350K .......... .......... .......... .......... .......... 42% 1.20M 4m54s\n223400K .......... .......... .......... .......... .......... 42% 1.15M 4m54s\n223450K .......... .......... .......... .......... .......... 42% 1.21M 4m54s\n223500K .......... .......... .......... .......... .......... 42% 1.19M 4m54s\n223550K .......... .......... .......... .......... .......... 42% 905K 4m54s\n223600K .......... .......... .......... .......... .......... 42% 1.18M 4m54s\n223650K .......... .......... .......... .......... .......... 42% 1.12M 4m54s\n223700K .......... .......... .......... .......... .......... 42% 1.23M 4m54s\n223750K .......... .......... .......... .......... .......... 42% 1.21M 4m53s\n223800K .......... .......... .......... .......... .......... 42% 1.18M 4m53s\n223850K .......... .......... .......... .......... .......... 42% 1.18M 4m53s\n223900K .......... .......... .......... .......... .......... 42% 1.20M 4m53s\n223950K .......... .......... .......... .......... .......... 42% 921K 4m53s\n224000K .......... .......... .......... .......... .......... 42% 1.14M 4m53s\n224050K .......... .......... .......... .......... .......... 42% 1.18M 4m53s\n224100K .......... .......... .......... .......... .......... 42% 1.21M 4m53s\n224150K .......... .......... .......... .......... .......... 42% 1.17M 4m53s\n224200K .......... .......... .......... .......... .......... 42% 1.24M 4m53s\n224250K .......... .......... .......... .......... .......... 42% 1.19M 4m53s\n224300K .......... .......... .......... .......... .......... 42% 1.20M 4m53s\n224350K .......... .......... .......... .......... .......... 42% 846K 4m53s\n224400K .......... .......... .......... .......... .......... 42% 1.23M 4m53s\n224450K .......... .......... .......... .......... .......... 42% 1.24M 4m53s\n224500K .......... .......... .......... .......... .......... 42% 204K 4m53s\n224550K .......... .......... .......... .......... .......... 42% 30.3M 4m53s\n224600K .......... .......... .......... .......... .......... 42% 448M 4m53s\n224650K .......... .......... .......... .......... .......... 42% 417K 4m53s\n224700K .......... .......... .......... .......... .......... 42% 66.3M 4m53s\n224750K .......... .......... .......... .......... .......... 42% 105M 4m53s\n224800K .......... .......... .......... .......... .......... 42% 1.51M 4m52s\n224850K .......... .......... .......... .......... .......... 42% 1.27M 4m52s\n224900K .......... .......... .......... .......... .......... 42% 1.16M 4m52s\n224950K .......... .......... .......... .......... .......... 42% 1.18M 4m52s\n225000K .......... .......... .......... .......... .......... 42% 1.16M 4m52s\n225050K .......... .......... .......... .......... .......... 42% 1.20M 4m52s\n225100K .......... .......... .......... .......... .......... 42% 1.21M 4m52s\n225150K .......... .......... .......... .......... .......... 42% 900K 4m52s\n225200K .......... .......... .......... .......... .......... 42% 1.16M 4m52s\n225250K .......... .......... .......... .......... .......... 42% 1.23M 4m52s\n225300K .......... .......... .......... .......... .......... 42% 1.16M 4m52s\n225350K .......... .......... .......... .......... .......... 42% 1.10M 4m52s\n225400K .......... .......... .......... .......... .......... 42% 1.32M 4m52s\n225450K .......... .......... .......... .......... .......... 42% 1.15M 4m52s\n225500K .......... .......... .......... .......... .......... 42% 1.23M 4m52s\n225550K .......... .......... .......... .......... .......... 42% 890K 4m52s\n225600K .......... .......... .......... .......... .......... 42% 1.17M 4m52s\n225650K .......... .......... .......... .......... .......... 42% 1.14M 4m52s\n225700K .......... .......... .......... .......... .......... 42% 1.30M 4m51s\n225750K .......... .......... .......... .......... .......... 42% 1.17M 4m51s\n225800K .......... .......... .......... .......... .......... 42% 1.18M 4m51s\n225850K .......... .......... .......... .......... .......... 42% 1.20M 4m51s\n225900K .......... .......... .......... .......... .......... 42% 1.18M 4m51s\n225950K .......... .......... .......... .......... .......... 42% 931K 4m51s\n226000K .......... .......... .......... .......... .......... 42% 1.17M 4m51s\n226050K .......... .......... .......... .......... .......... 42% 1.18M 4m51s\n226100K .......... .......... .......... .......... .......... 42% 1.18M 4m51s\n226150K .......... .......... .......... .......... .......... 42% 1.15M 4m51s\n226200K .......... .......... .......... .......... .......... 42% 1.21M 4m51s\n226250K .......... .......... .......... .......... .......... 42% 182K 4m51s\n226300K .......... .......... .......... .......... .......... 42% 329M 4m51s\n226350K .......... .......... .......... .......... .......... 42% 79.8M 4m51s\n226400K .......... .......... .......... .......... .......... 42% 527M 4m51s\n226450K .......... .......... .......... .......... .......... 42% 1.43M 4m51s\n226500K .......... .......... .......... .......... .......... 42% 1.10M 4m51s\n226550K .......... .......... .......... .......... .......... 42% 1.55M 4m51s\n226600K .......... .......... .......... .......... .......... 42% 11.3K 4m57s\n226650K .......... .......... .......... .......... .......... 42% 202K 4m57s\n226700K .......... .......... .......... .......... .......... 42% 228K 4m57s\n226750K .......... .......... .......... .......... .......... 42% 276K 4m57s\n226800K .......... .......... .......... .......... .......... 42% 439K 4m57s\n226850K .......... .......... .......... .......... .......... 42% 435K 4m57s\n226900K .......... .......... .......... .......... .......... 42% 527K 4m57s\n226950K .......... .......... .......... .......... .......... 42% 639K 4m57s\n227000K .......... .......... .......... .......... .......... 42% 675K 4m57s\n227050K .......... .......... .......... .......... .......... 42% 792K 4m57s\n227100K .......... .......... .......... .......... .......... 42% 775K 4m57s\n227150K .......... .......... .......... .......... .......... 42% 703K 4m57s\n227200K .......... .......... .......... .......... .......... 42% 1.04M 4m57s\n227250K .......... .......... .......... .......... .......... 42% 1.02M 4m57s\n227300K .......... .......... .......... .......... .......... 42% 1.09M 4m57s\n227350K .......... .......... .......... .......... .......... 42% 1.01M 4m57s\n227400K .......... .......... .......... .......... .......... 42% 998K 4m57s\n227450K .......... .......... .......... .......... .......... 42% 1.02M 4m57s\n227500K .......... .......... .......... .......... .......... 42% 1.08M 4m57s\n227550K .......... .......... .......... .......... .......... 42% 864K 4m57s\n227600K .......... .......... .......... .......... .......... 42% 1.17M 4m57s\n227650K .......... .......... .......... .......... .......... 42% 1.08M 4m57s\n227700K .......... .......... .......... .......... .......... 42% 1.12M 4m57s\n227750K .......... .......... .......... .......... .......... 42% 1.14M 4m56s\n227800K .......... .......... .......... .......... .......... 42% 1.20M 4m56s\n227850K .......... .......... .......... .......... .......... 42% 1.15M 4m56s\n227900K .......... .......... .......... .......... .......... 42% 1.16M 4m56s\n227950K .......... .......... .......... .......... .......... 42% 906K 4m56s\n228000K .......... .......... .......... .......... .......... 42% 1.16M 4m56s\n228050K .......... .......... .......... .......... .......... 42% 1.09M 4m56s\n228100K .......... .......... .......... .......... .......... 42% 1.13M 4m56s\n228150K .......... .......... .......... .......... .......... 42% 1.19M 4m56s\n228200K .......... .......... .......... .......... .......... 42% 1.18M 4m56s\n228250K .......... .......... .......... .......... .......... 42% 1.14M 4m56s\n228300K .......... .......... .......... .......... .......... 42% 1.16M 4m56s\n228350K .......... .......... .......... .......... .......... 42% 930K 4m56s\n228400K .......... .......... .......... .......... .......... 42% 1.20M 4m56s\n228450K .......... .......... .......... .......... .......... 42% 1.12M 4m56s\n228500K .......... .......... .......... .......... .......... 42% 1.12M 4m56s\n228550K .......... .......... .......... .......... .......... 42% 1.14M 4m56s\n228600K .......... .......... .......... .......... .......... 42% 1.17M 4m56s\n228650K .......... .......... .......... .......... .......... 43% 1006K 4m55s\n228700K .......... .......... .......... .......... .......... 43% 199K 4m56s\n228750K .......... .......... .......... .......... .......... 43% 220M 4m56s\n228800K .......... .......... .......... .......... .......... 43% 481M 4m55s\n228850K .......... .......... .......... .......... .......... 43% 6.40M 4m55s\n228900K .......... .......... .......... .......... .......... 43% 27.6M 4m55s\n228950K .......... .......... .......... .......... .......... 43% 2.02M 4m55s\n229000K .......... .......... .......... .......... .......... 43% 1.72M 4m55s\n229050K .......... .......... .......... .......... .......... 43% 1.03M 4m55s\n229100K .......... .......... .......... .......... .......... 43% 195K 4m55s\n229150K .......... .......... .......... .......... .......... 43% 56.0M 4m55s\n229200K .......... .......... .......... .......... .......... 43% 36.7M 4m55s\n229250K .......... .......... .......... .......... .......... 43% 111M 4m55s\n229300K .......... .......... .......... .......... .......... 43% 142M 4m55s\n229350K .......... .......... .......... .......... .......... 43% 1.44M 4m55s\n229400K .......... .......... .......... .......... .......... 43% 1.20M 4m55s\n229450K .......... .......... .......... .......... .......... 43% 1.19M 4m55s\n229500K .......... .......... .......... .......... .......... 43% 1.07M 4m55s\n229550K .......... .......... .......... .......... .......... 43% 997K 4m55s\n229600K .......... .......... .......... .......... .......... 43% 1.14M 4m54s\n229650K .......... .......... .......... .......... .......... 43% 1.23M 4m54s\n229700K .......... .......... .......... .......... .......... 43% 1.14M 4m54s\n229750K .......... .......... .......... .......... .......... 43% 1.18M 4m54s\n229800K .......... .......... .......... .......... .......... 43% 1.14M 4m54s\n229850K .......... .......... .......... .......... .......... 43% 1.28M 4m54s\n229900K .......... .......... .......... .......... .......... 43% 1.17M 4m54s\n229950K .......... .......... .......... .......... .......... 43% 874K 4m54s\n230000K .......... .......... .......... .......... .......... 43% 1.23M 4m54s\n230050K .......... .......... .......... .......... .......... 43% 1.13M 4m54s\n230100K .......... .......... .......... .......... .......... 43% 1.23M 4m54s\n230150K .......... .......... .......... .......... .......... 43% 1.19M 4m54s\n230200K .......... .......... .......... .......... .......... 43% 1.16M 4m54s\n230250K .......... .......... .......... .......... .......... 43% 1.19M 4m54s\n230300K .......... .......... .......... .......... .......... 43% 1.19M 4m54s\n230350K .......... .......... .......... .......... .......... 43% 933K 4m54s\n230400K .......... .......... .......... .......... .......... 43% 1.12M 4m54s\n230450K .......... .......... .......... .......... .......... 43% 1.21M 4m54s\n230500K .......... .......... .......... .......... .......... 43% 1.23M 4m53s\n230550K .......... .......... .......... .......... .......... 43% 1.14M 4m53s\n230600K .......... .......... .......... .......... .......... 43% 1.14M 4m53s\n230650K .......... .......... .......... .......... .......... 43% 1.24M 4m53s\n230700K .......... .......... .......... .......... .......... 43% 1.05M 4m53s\n230750K .......... .......... .......... .......... .......... 43% 1000K 4m53s\n230800K .......... .......... .......... .......... .......... 43% 1.15M 4m53s\n230850K .......... .......... .......... .......... .......... 43% 1.08M 4m53s\n230900K .......... .......... .......... .......... .......... 43% 1.14M 4m53s\n230950K .......... .......... .......... .......... .......... 43% 1.21M 4m53s\n231000K .......... .......... .......... .......... .......... 43% 1.19M 4m53s\n231050K .......... .......... .......... .......... .......... 43% 1.16M 4m53s\n231100K .......... .......... .......... .......... .......... 43% 1.12M 4m53s\n231150K .......... .......... .......... .......... .......... 43% 918K 4m53s\n231200K .......... .......... .......... .......... .......... 43% 1.16M 4m53s\n231250K .......... .......... .......... .......... .......... 43% 1.23M 4m53s\n231300K .......... .......... .......... .......... .......... 43% 1.17M 4m53s\n231350K .......... .......... .......... .......... .......... 43% 1.25M 4m53s\n231400K .......... .......... .......... .......... .......... 43% 1.11M 4m52s\n231450K .......... .......... .......... .......... .......... 43% 1.19M 4m52s\n231500K .......... .......... .......... .......... .......... 43% 1.20M 4m52s\n231550K .......... .......... .......... .......... .......... 43% 927K 4m52s\n231600K .......... .......... .......... .......... .......... 43% 1.14M 4m52s\n231650K .......... .......... .......... .......... .......... 43% 1.22M 4m52s\n231700K .......... .......... .......... .......... .......... 43% 1.02M 4m52s\n231750K .......... .......... .......... .......... .......... 43% 1.18M 4m52s\n231800K .......... .......... .......... .......... .......... 43% 1.17M 4m52s\n231850K .......... .......... .......... .......... .......... 43% 1.20M 4m52s\n231900K .......... .......... .......... .......... .......... 43% 1.17M 4m52s\n231950K .......... .......... .......... .......... .......... 43% 922K 4m52s\n232000K .......... .......... .......... .......... .......... 43% 1.19M 4m52s\n232050K .......... .......... .......... .......... .......... 43% 1.16M 4m52s\n232100K .......... .......... .......... .......... .......... 43% 1.20M 4m52s\n232150K .......... .......... .......... .......... .......... 43% 1.21M 4m52s\n232200K .......... .......... .......... .......... .......... 43% 1.17M 4m52s\n232250K .......... .......... .......... .......... .......... 43% 1.17M 4m52s\n232300K .......... .......... .......... .......... .......... 43% 852K 4m51s\n232350K .......... .......... .......... .......... .......... 43% 1.37M 4m51s\n232400K .......... .......... .......... .......... .......... 43% 1.17M 4m51s\n232450K .......... .......... .......... .......... .......... 43% 1.16M 4m51s\n232500K .......... .......... .......... .......... .......... 43% 1.22M 4m51s\n232550K .......... .......... .......... .......... .......... 43% 1.17M 4m51s\n232600K .......... .......... .......... .......... .......... 43% 1.21M 4m51s\n232650K .......... .......... .......... .......... .......... 43% 1.16M 4m51s\n232700K .......... .......... .......... .......... .......... 43% 1.17M 4m51s\n232750K .......... .......... .......... .......... .......... 43% 944K 4m51s\n232800K .......... .......... .......... .......... .......... 43% 1.20M 4m51s\n232850K .......... .......... .......... .......... .......... 43% 1.18M 4m51s\n232900K .......... .......... .......... .......... .......... 43% 1.16M 4m51s\n232950K .......... .......... .......... .......... .......... 43% 1.17M 4m51s\n233000K .......... .......... .......... .......... .......... 43% 1.25M 4m51s\n233050K .......... .......... .......... .......... .......... 43% 1.18M 4m51s\n233100K .......... .......... .......... .......... .......... 43% 1.19M 4m51s\n233150K .......... .......... .......... .......... .......... 43% 901K 4m51s\n233200K .......... .......... .......... .......... .......... 43% 1.18M 4m50s\n233250K .......... .......... .......... .......... .......... 43% 1.18M 4m50s\n233300K .......... .......... .......... .......... .......... 43% 1.12M 4m50s\n233350K .......... .......... .......... .......... .......... 43% 1.23M 4m50s\n233400K .......... .......... .......... .......... .......... 43% 1.21M 4m50s\n233450K .......... .......... .......... .......... .......... 43% 1.12M 4m50s\n233500K .......... .......... .......... .......... .......... 43% 1.25M 4m50s\n233550K .......... .......... .......... .......... .......... 43% 937K 4m50s\n233600K .......... .......... .......... .......... .......... 43% 1.18M 4m50s\n233650K .......... .......... .......... .......... .......... 43% 1.13M 4m50s\n233700K .......... .......... .......... .......... .......... 43% 1.26M 4m50s\n233750K .......... .......... .......... .......... .......... 43% 1.16M 4m50s\n233800K .......... .......... .......... .......... .......... 43% 1.21M 4m50s\n233850K .......... .......... .......... .......... .......... 43% 1.14M 4m50s\n233900K .......... .......... .......... .......... .......... 43% 1.23M 4m50s\n233950K .......... .......... .......... .......... .......... 43% 911K 4m50s\n234000K .......... .......... .......... .......... .......... 44% 1.17M 4m50s\n234050K .......... .......... .......... .......... .......... 44% 1.15M 4m50s\n234100K .......... .......... .......... .......... .......... 44% 1.22M 4m49s\n234150K .......... .......... .......... .......... .......... 44% 1.20M 4m49s\n234200K .......... .......... .......... .......... .......... 44% 1.19M 4m49s\n234250K .......... .......... .......... .......... .......... 44% 1.16M 4m49s\n234300K .......... .......... .......... .......... .......... 44% 1.21M 4m49s\n234350K .......... .......... .......... .......... .......... 44% 919K 4m49s\n234400K .......... .......... .......... .......... .......... 44% 1.16M 4m49s\n234450K .......... .......... .......... .......... .......... 44% 1.19M 4m49s\n234500K .......... .......... .......... .......... .......... 44% 1.18M 4m49s\n234550K .......... .......... .......... .......... .......... 44% 1.22M 4m49s\n234600K .......... .......... .......... .......... .......... 44% 1.16M 4m49s\n234650K .......... .......... .......... .......... .......... 44% 1.21M 4m49s\n234700K .......... .......... .......... .......... .......... 44% 1.17M 4m49s\n234750K .......... .......... .......... .......... .......... 44% 931K 4m49s\n234800K .......... .......... .......... .......... .......... 44% 1.15M 4m49s\n234850K .......... .......... .......... .......... .......... 44% 1.10M 4m49s\n234900K .......... .......... .......... .......... .......... 44% 1.24M 4m49s\n234950K .......... .......... .......... .......... .......... 44% 1.21M 4m48s\n235000K .......... .......... .......... .......... .......... 44% 1.25M 4m48s\n235050K .......... .......... .......... .......... .......... 44% 1.17M 4m48s\n235100K .......... .......... .......... .......... .......... 44% 1.15M 4m48s\n235150K .......... .......... .......... .......... .......... 44% 913K 4m48s\n235200K .......... .......... .......... .......... .......... 44% 1.09M 4m48s\n235250K .......... .......... .......... .......... .......... 44% 1.26M 4m48s\n235300K .......... .......... .......... .......... .......... 44% 1.08M 4m48s\n235350K .......... .......... .......... .......... .......... 44% 1.32M 4m48s\n235400K .......... .......... .......... .......... .......... 44% 1.20M 4m48s\n235450K .......... .......... .......... .......... .......... 44% 1.12M 4m48s\n235500K .......... .......... .......... .......... .......... 44% 1.27M 4m48s\n235550K .......... .......... .......... .......... .......... 44% 896K 4m48s\n235600K .......... .......... .......... .......... .......... 44% 1.20M 4m48s\n235650K .......... .......... .......... .......... .......... 44% 1.14M 4m48s\n235700K .......... .......... .......... .......... .......... 44% 1.20M 4m48s\n235750K .......... .......... .......... .......... .......... 44% 1.22M 4m48s\n235800K .......... .......... .......... .......... .......... 44% 1.16M 4m48s\n235850K .......... .......... .......... .......... .......... 44% 1.20M 4m47s\n235900K .......... .......... .......... .......... .......... 44% 1.18M 4m47s\n235950K .......... .......... .......... .......... .......... 44% 924K 4m47s\n236000K .......... .......... .......... .......... .......... 44% 1.20M 4m47s\n236050K .......... .......... .......... .......... .......... 44% 1.17M 4m47s\n236100K .......... .......... .......... .......... .......... 44% 1.21M 4m47s\n236150K .......... .......... .......... .......... .......... 44% 1.20M 4m47s\n236200K .......... .......... .......... .......... .......... 44% 1.09M 4m47s\n236250K .......... .......... .......... .......... .......... 44% 1.29M 4m47s\n236300K .......... .......... .......... .......... .......... 44% 1.16M 4m47s\n236350K .......... .......... .......... .......... .......... 44% 913K 4m47s\n236400K .......... .......... .......... .......... .......... 44% 1.16M 4m47s\n236450K .......... .......... .......... .......... .......... 44% 1.22M 4m47s\n236500K .......... .......... .......... .......... .......... 44% 1.22M 4m47s\n236550K .......... .......... .......... .......... .......... 44% 367K 4m47s\n236600K .......... .......... .......... .......... .......... 44% 238M 4m47s\n236650K .......... .......... .......... .......... .......... 44% 61.0M 4m47s\n236700K .......... .......... .......... .......... .......... 44% 1.67M 4m47s\n236750K .......... .......... .......... .......... .......... 44% 213K 4m47s\n236800K .......... .......... .......... .......... .......... 44% 16.2M 4m47s\n236850K .......... .......... .......... .......... .......... 44% 16.6M 4m47s\n236900K .......... .......... .......... .......... .......... 44% 393K 4m47s\n236950K .......... .......... .......... .......... .......... 44% 45.3M 4m46s\n237000K .......... .......... .......... .......... .......... 44% 299M 4m46s\n237050K .......... .......... .......... .......... .......... 44% 349M 4m46s\n237100K .......... .......... .......... .......... .......... 44% 859K 4m46s\n237150K .......... .......... .......... .......... .......... 44% 896K 4m46s\n237200K .......... .......... .......... .......... .......... 44% 1.22M 4m46s\n237250K .......... .......... .......... .......... .......... 44% 1.13M 4m46s\n237300K .......... .......... .......... .......... .......... 44% 1.26M 4m46s\n237350K .......... .......... .......... .......... .......... 44% 1.18M 4m46s\n237400K .......... .......... .......... .......... .......... 44% 1.15M 4m46s\n237450K .......... .......... .......... .......... .......... 44% 202K 4m46s\n237500K .......... .......... .......... .......... .......... 44% 13.6M 4m46s\n237550K .......... .......... .......... .......... .......... 44% 15.3M 4m46s\n237600K .......... .......... .......... .......... .......... 44% 15.0M 4m46s\n237650K .......... .......... .......... .......... .......... 44% 17.9M 4m46s\n237700K .......... .......... .......... .......... .......... 44% 3.35M 4m46s\n237750K .......... .......... .......... .......... .......... 44% 1.16M 4m46s\n237800K .......... .......... .......... .......... .......... 44% 1.13M 4m45s\n237850K .......... .......... .......... .......... .......... 44% 1.23M 4m45s\n237900K .......... .......... .......... .......... .......... 44% 1.17M 4m45s\n237950K .......... .......... .......... .......... .......... 44% 909K 4m45s\n238000K .......... .......... .......... .......... .......... 44% 1.05M 4m45s\n238050K .......... .......... .......... .......... .......... 44% 1.36M 4m45s\n238100K .......... .......... .......... .......... .......... 44% 1.25M 4m45s\n238150K .......... .......... .......... .......... .......... 44% 1.17M 4m45s\n238200K .......... .......... .......... .......... .......... 44% 1.15M 4m45s\n238250K .......... .......... .......... .......... .......... 44% 1.20M 4m45s\n238300K .......... .......... .......... .......... .......... 44% 1.20M 4m45s\n238350K .......... .......... .......... .......... .......... 44% 894K 4m45s\n238400K .......... .......... .......... .......... .......... 44% 1.20M 4m45s\n238450K .......... .......... .......... .......... .......... 44% 1.18M 4m45s\n238500K .......... .......... .......... .......... .......... 44% 1.22M 4m45s\n238550K .......... .......... .......... .......... .......... 44% 1.08M 4m45s\n238600K .......... .......... .......... .......... .......... 44% 1.28M 4m45s\n238650K .......... .......... .......... .......... .......... 44% 1.17M 4m44s\n238700K .......... .......... .......... .......... .......... 44% 1.24M 4m44s\n238750K .......... .......... .......... .......... .......... 44% 208K 4m45s\n238800K .......... .......... .......... .......... .......... 44% 35.9M 4m45s\n238850K .......... .......... .......... .......... .......... 44% 61.8M 4m44s\n238900K .......... .......... .......... .......... .......... 44% 26.1M 4m44s\n238950K .......... .......... .......... .......... .......... 44% 239M 4m44s\n239000K .......... .......... .......... .......... .......... 44% 1.06M 4m44s\n239050K .......... .......... .......... .......... .......... 44% 1.20M 4m44s\n239100K .......... .......... .......... .......... .......... 44% 214K 4m44s\n239150K .......... .......... .......... .......... .......... 44% 64.4M 4m44s\n239200K .......... .......... .......... .......... .......... 44% 78.3M 4m44s\n239250K .......... .......... .......... .......... .......... 44% 299M 4m44s\n239300K .......... .......... .......... .......... .......... 45% 105M 4m44s\n239350K .......... .......... .......... .......... .......... 45% 1.07M 4m44s\n239400K .......... .......... .......... .......... .......... 45% 1.21M 4m44s\n239450K .......... .......... .......... .......... .......... 45% 1.17M 4m44s\n239500K .......... .......... .......... .......... .......... 45% 1.17M 4m44s\n239550K .......... .......... .......... .......... .......... 45% 919K 4m44s\n239600K .......... .......... .......... .......... .......... 45% 1.18M 4m44s\n239650K .......... .......... .......... .......... .......... 45% 1.14M 4m43s\n239700K .......... .......... .......... .......... .......... 45% 1.24M 4m43s\n239750K .......... .......... .......... .......... .......... 45% 1.09M 4m43s\n239800K .......... .......... .......... .......... .......... 45% 1.32M 4m43s\n239850K .......... .......... .......... .......... .......... 45% 1.19M 4m43s\n239900K .......... .......... .......... .......... .......... 45% 1.16M 4m43s\n239950K .......... .......... .......... .......... .......... 45% 917K 4m43s\n240000K .......... .......... .......... .......... .......... 45% 1.18M 4m43s\n240050K .......... .......... .......... .......... .......... 45% 1.21M 4m43s\n240100K .......... .......... .......... .......... .......... 45% 1.21M 4m43s\n240150K .......... .......... .......... .......... .......... 45% 1.19M 4m43s\n240200K .......... .......... .......... .......... .......... 45% 1.20M 4m43s\n240250K .......... .......... .......... .......... .......... 45% 1.18M 4m43s\n240300K .......... .......... .......... .......... .......... 45% 1.17M 4m43s\n240350K .......... .......... .......... .......... .......... 45% 904K 4m43s\n240400K .......... .......... .......... .......... .......... 45% 1.15M 4m43s\n240450K .......... .......... .......... .......... .......... 45% 1.20M 4m43s\n240500K .......... .......... .......... .......... .......... 45% 1.20M 4m43s\n240550K .......... .......... .......... .......... .......... 45% 1.16M 4m42s\n240600K .......... .......... .......... .......... .......... 45% 1.22M 4m42s\n240650K .......... .......... .......... .......... .......... 45% 1.18M 4m42s\n240700K .......... .......... .......... .......... .......... 45% 1.20M 4m42s\n240750K .......... .......... .......... .......... .......... 45% 878K 4m42s\n240800K .......... .......... .......... .......... .......... 45% 1.26M 4m42s\n240850K .......... .......... .......... .......... .......... 45% 1.20M 4m42s\n240900K .......... .......... .......... .......... .......... 45% 1.17M 4m42s\n240950K .......... .......... .......... .......... .......... 45% 1.16M 4m42s\n241000K .......... .......... .......... .......... .......... 45% 1.20M 4m42s\n241050K .......... .......... .......... .......... .......... 45% 1.20M 4m42s\n241100K .......... .......... .......... .......... .......... 45% 1.18M 4m42s\n241150K .......... .......... .......... .......... .......... 45% 936K 4m42s\n241200K .......... .......... .......... .......... .......... 45% 1.07M 4m42s\n241250K .......... .......... .......... .......... .......... 45% 1.31M 4m42s\n241300K .......... .......... .......... .......... .......... 45% 1.22M 4m42s\n241350K .......... .......... .......... .......... .......... 45% 1.17M 4m42s\n241400K .......... .......... .......... .......... .......... 45% 1.20M 4m42s\n241450K .......... .......... .......... .......... .......... 45% 1.12M 4m41s\n241500K .......... .......... .......... .......... .......... 45% 1.27M 4m41s\n241550K .......... .......... .......... .......... .......... 45% 882K 4m41s\n241600K .......... .......... .......... .......... .......... 45% 1.23M 4m41s\n241650K .......... .......... .......... .......... .......... 45% 1.18M 4m41s\n241700K .......... .......... .......... .......... .......... 45% 1.19M 4m41s\n241750K .......... .......... .......... .......... .......... 45% 1.19M 4m41s\n241800K .......... .......... .......... .......... .......... 45% 1.18M 4m41s\n241850K .......... .......... .......... .......... .......... 45% 1.16M 4m41s\n241900K .......... .......... .......... .......... .......... 45% 1.22M 4m41s\n241950K .......... .......... .......... .......... .......... 45% 875K 4m41s\n242000K .......... .......... .......... .......... .......... 45% 1.28M 4m41s\n242050K .......... .......... .......... .......... .......... 45% 1.18M 4m41s\n242100K .......... .......... .......... .......... .......... 45% 1.20M 4m41s\n242150K .......... .......... .......... .......... .......... 45% 1.17M 4m41s\n242200K .......... .......... .......... .......... .......... 45% 1.15M 4m41s\n242250K .......... .......... .......... .......... .......... 45% 1.20M 4m41s\n242300K .......... .......... .......... .......... .......... 45% 1.20M 4m41s\n242350K .......... .......... .......... .......... .......... 45% 924K 4m40s\n242400K .......... .......... .......... .......... .......... 45% 1.12M 4m40s\n242450K .......... .......... .......... .......... .......... 45% 1.25M 4m40s\n242500K .......... .......... .......... .......... .......... 45% 1.22M 4m40s\n242550K .......... .......... .......... .......... .......... 45% 1.14M 4m40s\n242600K .......... .......... .......... .......... .......... 45% 1.22M 4m40s\n242650K .......... .......... .......... .......... .......... 45% 1.19M 4m40s\n242700K .......... .......... .......... .......... .......... 45% 1.18M 4m40s\n242750K .......... .......... .......... .......... .......... 45% 901K 4m40s\n242800K .......... .......... .......... .......... .......... 45% 1.20M 4m40s\n242850K .......... .......... .......... .......... .......... 45% 1.18M 4m40s\n242900K .......... .......... .......... .......... .......... 45% 1.18M 4m40s\n242950K .......... .......... .......... .......... .......... 45% 1.20M 4m40s\n243000K .......... .......... .......... .......... .......... 45% 1.19M 4m40s\n243050K .......... .......... .......... .......... .......... 45% 1.17M 4m40s\n243100K .......... .......... .......... .......... .......... 45% 1.19M 4m40s\n243150K .......... .......... .......... .......... .......... 45% 907K 4m40s\n243200K .......... .......... .......... .......... .......... 45% 1.20M 4m40s\n243250K .......... .......... .......... .......... .......... 45% 1.17M 4m39s\n243300K .......... .......... .......... .......... .......... 45% 1.22M 4m39s\n243350K .......... .......... .......... .......... .......... 45% 1.19M 4m39s\n243400K .......... .......... .......... .......... .......... 45% 1.17M 4m39s\n243450K .......... .......... .......... .......... .......... 45% 1.20M 4m39s\n243500K .......... .......... .......... .......... .......... 45% 1.18M 4m39s\n243550K .......... .......... .......... .......... .......... 45% 906K 4m39s\n243600K .......... .......... .......... .......... .......... 45% 1.18M 4m39s\n243650K .......... .......... .......... .......... .......... 45% 1.19M 4m39s\n243700K .......... .......... .......... .......... .......... 45% 1.17M 4m39s\n243750K .......... .......... .......... .......... .......... 45% 1.15M 4m39s\n243800K .......... .......... .......... .......... .......... 45% 1.23M 4m39s\n243850K .......... .......... .......... .......... .......... 45% 1.20M 4m39s\n243900K .......... .......... .......... .......... .......... 45% 1.18M 4m39s\n243950K .......... .......... .......... .......... .......... 45% 920K 4m39s\n244000K .......... .......... .......... .......... .......... 45% 1.16M 4m39s\n244050K .......... .......... .......... .......... .......... 45% 1.23M 4m39s\n244100K .......... .......... .......... .......... .......... 45% 1.19M 4m39s\n244150K .......... .......... .......... .......... .......... 45% 1.19M 4m38s\n244200K .......... .......... .......... .......... .......... 45% 1.19M 4m38s\n244250K .......... .......... .......... .......... .......... 45% 1.17M 4m38s\n244300K .......... .......... .......... .......... .......... 45% 1.21M 4m38s\n244350K .......... .......... .......... .......... .......... 45% 894K 4m38s\n244400K .......... .......... .......... .......... .......... 45% 1.20M 4m38s\n244450K .......... .......... .......... .......... .......... 45% 1.19M 4m38s\n244500K .......... .......... .......... .......... .......... 45% 1.19M 4m38s\n244550K .......... .......... .......... .......... .......... 45% 1.20M 4m38s\n244600K .......... .......... .......... .......... .......... 45% 1.20M 4m38s\n244650K .......... .......... .......... .......... .......... 46% 1.19M 4m38s\n244700K .......... .......... .......... .......... .......... 46% 1.18M 4m38s\n244750K .......... .......... .......... .......... .......... 46% 902K 4m38s\n244800K .......... .......... .......... .......... .......... 46% 1.17M 4m38s\n244850K .......... .......... .......... .......... .......... 46% 1.21M 4m38s\n244900K .......... .......... .......... .......... .......... 46% 1.16M 4m38s\n244950K .......... .......... .......... .......... .......... 46% 1.16M 4m38s\n245000K .......... .......... .......... .......... .......... 46% 1.22M 4m38s\n245050K .......... .......... .......... .......... .......... 46% 1.21M 4m37s\n245100K .......... .......... .......... .......... .......... 46% 1.18M 4m37s\n245150K .......... .......... .......... .......... .......... 46% 924K 4m37s\n245200K .......... .......... .......... .......... .......... 46% 1.17M 4m37s\n245250K .......... .......... .......... .......... .......... 46% 1.18M 4m37s\n245300K .......... .......... .......... .......... .......... 46% 1.17M 4m37s\n245350K .......... .......... .......... .......... .......... 46% 1.21M 4m37s\n245400K .......... .......... .......... .......... .......... 46% 1.17M 4m37s\n245450K .......... .......... .......... .......... .......... 46% 1.21M 4m37s\n245500K .......... .......... .......... .......... .......... 46% 1.21M 4m37s\n245550K .......... .......... .......... .......... .......... 46% 905K 4m37s\n245600K .......... .......... .......... .......... .......... 46% 1.21M 4m37s\n245650K .......... .......... .......... .......... .......... 46% 1.17M 4m37s\n245700K .......... .......... .......... .......... .......... 46% 1.15M 4m37s\n245750K .......... .......... .......... .......... .......... 46% 1.23M 4m37s\n245800K .......... .......... .......... .......... .......... 46% 1.16M 4m37s\n245850K .......... .......... .......... .......... .......... 46% 1.17M 4m37s\n245900K .......... .......... .......... .......... .......... 46% 1.22M 4m37s\n245950K .......... .......... .......... .......... .......... 46% 908K 4m37s\n246000K .......... .......... .......... .......... .......... 46% 1.15M 4m36s\n246050K .......... .......... .......... .......... .......... 46% 1.16M 4m36s\n246100K .......... .......... .......... .......... .......... 46% 1.28M 4m36s\n246150K .......... .......... .......... .......... .......... 46% 1.16M 4m36s\n246200K .......... .......... .......... .......... .......... 46% 1.22M 4m36s\n246250K .......... .......... .......... .......... .......... 46% 1.17M 4m36s\n246300K .......... .......... .......... .......... .......... 46% 1.19M 4m36s\n246350K .......... .......... .......... .......... .......... 46% 922K 4m36s\n246400K .......... .......... .......... .......... .......... 46% 1.19M 4m36s\n246450K .......... .......... .......... .......... .......... 46% 1.19M 4m36s\n246500K .......... .......... .......... .......... .......... 46% 1.18M 4m36s\n246550K .......... .......... .......... .......... .......... 46% 1.17M 4m36s\n246600K .......... .......... .......... .......... .......... 46% 1.19M 4m36s\n246650K .......... .......... .......... .......... .......... 46% 1.18M 4m36s\n246700K .......... .......... .......... .......... .......... 46% 1.17M 4m36s\n246750K .......... .......... .......... .......... .......... 46% 956K 4m36s\n246800K .......... .......... .......... .......... .......... 46% 1.14M 4m36s\n246850K .......... .......... .......... .......... .......... 46% 1.17M 4m36s\n246900K .......... .......... .......... .......... .......... 46% 1.20M 4m35s\n246950K .......... .......... .......... .......... .......... 46% 1.17M 4m35s\n247000K .......... .......... .......... .......... .......... 46% 1.16M 4m35s\n247050K .......... .......... .......... .......... .......... 46% 1.20M 4m35s\n247100K .......... .......... .......... .......... .......... 46% 1.14M 4m35s\n247150K .......... .......... .......... .......... .......... 46% 954K 4m35s\n247200K .......... .......... .......... .......... .......... 46% 1.18M 4m35s\n247250K .......... .......... .......... .......... .......... 46% 182K 4m35s\n247300K .......... .......... .......... .......... .......... 46% 70.0M 4m35s\n247350K .......... .......... .......... .......... .......... 46% 92.3M 4m35s\n247400K .......... .......... .......... .......... .......... 46% 1.53M 4m35s\n247450K .......... .......... .......... .......... .......... 46% 50.4M 4m35s\n247500K .......... .......... .......... .......... .......... 46% 4.35M 4m35s\n247550K .......... .......... .......... .......... .......... 46% 896K 4m35s\n247600K .......... .......... .......... .......... .......... 46% 1.17M 4m35s\n247650K .......... .......... .......... .......... .......... 46% 1.22M 4m35s\n247700K .......... .......... .......... .......... .......... 46% 1.17M 4m35s\n247750K .......... .......... .......... .......... .......... 46% 1.21M 4m35s\n247800K .......... .......... .......... .......... .......... 46% 1.16M 4m35s\n247850K .......... .......... .......... .......... .......... 46% 1.19M 4m35s\n247900K .......... .......... .......... .......... .......... 46% 1.22M 4m34s\n247950K .......... .......... .......... .......... .......... 46% 891K 4m34s\n248000K .......... .......... .......... .......... .......... 46% 1.16M 4m34s\n248050K .......... .......... .......... .......... .......... 46% 1.18M 4m34s\n248100K .......... .......... .......... .......... .......... 46% 1.22M 4m34s\n248150K .......... .......... .......... .......... .......... 46% 1.18M 4m34s\n248200K .......... .......... .......... .......... .......... 46% 221K 4m34s\n248250K .......... .......... .......... .......... .......... 46% 56.8M 4m34s\n248300K .......... .......... .......... .......... .......... 46% 19.0M 4m34s\n248350K .......... .......... .......... .......... .......... 46% 6.79M 4m34s\n248400K .......... .......... .......... .......... .......... 46% 27.0M 4m34s\n248450K .......... .......... .......... .......... .......... 46% 1.29M 4m34s\n248500K .......... .......... .......... .......... .......... 46% 1.23M 4m34s\n248550K .......... .......... .......... .......... .......... 46% 1.10M 4m34s\n248600K .......... .......... .......... .......... .......... 46% 1.28M 4m34s\n248650K .......... .......... .......... .......... .......... 46% 1.17M 4m34s\n248700K .......... .......... .......... .......... .......... 46% 1.18M 4m34s\n248750K .......... .......... .......... .......... .......... 46% 890K 4m34s\n248800K .......... .......... .......... .......... .......... 46% 1.21M 4m34s\n248850K .......... .......... .......... .......... .......... 46% 1.22M 4m33s\n248900K .......... .......... .......... .......... .......... 46% 1.11M 4m33s\n248950K .......... .......... .......... .......... .......... 46% 1.27M 4m33s\n249000K .......... .......... .......... .......... .......... 46% 1.18M 4m33s\n249050K .......... .......... .......... .......... .......... 46% 1.19M 4m33s\n249100K .......... .......... .......... .......... .......... 46% 1.14M 4m33s\n249150K .......... .......... .......... .......... .......... 46% 912K 4m33s\n249200K .......... .......... .......... .......... .......... 46% 1.20M 4m33s\n249250K .......... .......... .......... .......... .......... 46% 1.23M 4m33s\n249300K .......... .......... .......... .......... .......... 46% 1.16M 4m33s\n249350K .......... .......... .......... .......... .......... 46% 1.22M 4m33s\n249400K .......... .......... .......... .......... .......... 46% 1.18M 4m33s\n249450K .......... .......... .......... .......... .......... 46% 1.19M 4m33s\n249500K .......... .......... .......... .......... .......... 46% 192K 4m33s\n249550K .......... .......... .......... .......... .......... 46% 47.1M 4m33s\n249600K .......... .......... .......... .......... .......... 46% 121M 4m33s\n249650K .......... .......... .......... .......... .......... 46% 17.4M 4m33s\n249700K .......... .......... .......... .......... .......... 46% 83.2M 4m33s\n249750K .......... .......... .......... .......... .......... 46% 137M 4m32s\n249800K .......... .......... .......... .......... .......... 46% 808K 4m32s\n249850K .......... .......... .......... .......... .......... 46% 1.14M 4m32s\n249900K .......... .......... .......... .......... .......... 46% 1.16M 4m32s\n249950K .......... .......... .......... .......... .......... 47% 912K 4m32s\n250000K .......... .......... .......... .......... .......... 47% 1.28M 4m32s\n250050K .......... .......... .......... .......... .......... 47% 1.18M 4m32s\n250100K .......... .......... .......... .......... .......... 47% 1.16M 4m32s\n250150K .......... .......... .......... .......... .......... 47% 1.16M 4m32s\n250200K .......... .......... .......... .......... .......... 47% 1.18M 4m32s\n250250K .......... .......... .......... .......... .......... 47% 1.20M 4m32s\n250300K .......... .......... .......... .......... .......... 47% 1.20M 4m32s\n250350K .......... .......... .......... .......... .......... 47% 914K 4m32s\n250400K .......... .......... .......... .......... .......... 47% 1.21M 4m32s\n250450K .......... .......... .......... .......... .......... 47% 1.17M 4m32s\n250500K .......... .......... .......... .......... .......... 47% 1.18M 4m32s\n250550K .......... .......... .......... .......... .......... 47% 1.15M 4m32s\n250600K .......... .......... .......... .......... .......... 47% 1.24M 4m32s\n250650K .......... .......... .......... .......... .......... 47% 1.15M 4m32s\n250700K .......... .......... .......... .......... .......... 47% 1.26M 4m31s\n250750K .......... .......... .......... .......... .......... 47% 903K 4m31s\n250800K .......... .......... .......... .......... .......... 47% 1.19M 4m31s\n250850K .......... .......... .......... .......... .......... 47% 1.18M 4m31s\n250900K .......... .......... .......... .......... .......... 47% 1.16M 4m31s\n250950K .......... .......... .......... .......... .......... 47% 1.22M 4m31s\n251000K .......... .......... .......... .......... .......... 47% 1.17M 4m31s\n251050K .......... .......... .......... .......... .......... 47% 1.23M 4m31s\n251100K .......... .......... .......... .......... .......... 47% 1.16M 4m31s\n251150K .......... .......... .......... .......... .......... 47% 914K 4m31s\n251200K .......... .......... .......... .......... .......... 47% 1.16M 4m31s\n251250K .......... .......... .......... .......... .......... 47% 1.22M 4m31s\n251300K .......... .......... .......... .......... .......... 47% 1.14M 4m31s\n251350K .......... .......... .......... .......... .......... 47% 1.21M 4m31s\n251400K .......... .......... .......... .......... .......... 47% 1.19M 4m31s\n251450K .......... .......... .......... .......... .......... 47% 1.17M 4m31s\n251500K .......... .......... .......... .......... .......... 47% 1.21M 4m31s\n251550K .......... .......... .......... .......... .......... 47% 937K 4m31s\n251600K .......... .......... .......... .......... .......... 47% 1.18M 4m30s\n251650K .......... .......... .......... .......... .......... 47% 1.17M 4m30s\n251700K .......... .......... .......... .......... .......... 47% 1.19M 4m30s\n251750K .......... .......... .......... .......... .......... 47% 1.20M 4m30s\n251800K .......... .......... .......... .......... .......... 47% 1.15M 4m30s\n251850K .......... .......... .......... .......... .......... 47% 1.21M 4m30s\n251900K .......... .......... .......... .......... .......... 47% 1.21M 4m30s\n251950K .......... .......... .......... .......... .......... 47% 902K 4m30s\n252000K .......... .......... .......... .......... .......... 47% 1.18M 4m30s\n252050K .......... .......... .......... .......... .......... 47% 1.20M 4m30s\n252100K .......... .......... .......... .......... .......... 47% 1.19M 4m30s\n252150K .......... .......... .......... .......... .......... 47% 1.21M 4m30s\n252200K .......... .......... .......... .......... .......... 47% 1.16M 4m30s\n252250K .......... .......... .......... .......... .......... 47% 1.16M 4m30s\n252300K .......... .......... .......... .......... .......... 47% 1.16M 4m30s\n252350K .......... .......... .......... .......... .......... 47% 939K 4m30s\n252400K .......... .......... .......... .......... .......... 47% 1.19M 4m30s\n252450K .......... .......... .......... .......... .......... 47% 1.20M 4m30s\n252500K .......... .......... .......... .......... .......... 47% 1.19M 4m30s\n252550K .......... .......... .......... .......... .......... 47% 1.20M 4m29s\n252600K .......... .......... .......... .......... .......... 47% 1.17M 4m29s\n252650K .......... .......... .......... .......... .......... 47% 1.15M 4m29s\n252700K .......... .......... .......... .......... .......... 47% 1.23M 4m29s\n252750K .......... .......... .......... .......... .......... 47% 887K 4m29s\n252800K .......... .......... .......... .......... .......... 47% 1.25M 4m29s\n252850K .......... .......... .......... .......... .......... 47% 1.17M 4m29s\n252900K .......... .......... .......... .......... .......... 47% 1.22M 4m29s\n252950K .......... .......... .......... .......... .......... 47% 1.15M 4m29s\n253000K .......... .......... .......... .......... .......... 47% 1.03M 4m29s\n253050K .......... .......... .......... .......... .......... 47% 1.25M 4m29s\n253100K .......... .......... .......... .......... .......... 47% 1.22M 4m29s\n253150K .......... .......... .......... .......... .......... 47% 942K 4m29s\n253200K .......... .......... .......... .......... .......... 47% 1.19M 4m29s\n253250K .......... .......... .......... .......... .......... 47% 1.26M 4m29s\n253300K .......... .......... .......... .......... .......... 47% 1.19M 4m29s\n253350K .......... .......... .......... .......... .......... 47% 1.16M 4m29s\n253400K .......... .......... .......... .......... .......... 47% 1.20M 4m29s\n253450K .......... .......... .......... .......... .......... 47% 1.20M 4m28s\n253500K .......... .......... .......... .......... .......... 47% 1.15M 4m28s\n253550K .......... .......... .......... .......... .......... 47% 902K 4m28s\n253600K .......... .......... .......... .......... .......... 47% 1.20M 4m28s\n253650K .......... .......... .......... .......... .......... 47% 1.19M 4m28s\n253700K .......... .......... .......... .......... .......... 47% 1.22M 4m28s\n253750K .......... .......... .......... .......... .......... 47% 1.18M 4m28s\n253800K .......... .......... .......... .......... .......... 47% 1.16M 4m28s\n253850K .......... .......... .......... .......... .......... 47% 1.22M 4m28s\n253900K .......... .......... .......... .......... .......... 47% 1.04M 4m28s\n253950K .......... .......... .......... .......... .......... 47% 1004K 4m28s\n254000K .......... .......... .......... .......... .......... 47% 1.18M 4m28s\n254050K .......... .......... .......... .......... .......... 47% 1.23M 4m28s\n254100K .......... .......... .......... .......... .......... 47% 1.12M 4m28s\n254150K .......... .......... .......... .......... .......... 47% 1.20M 4m28s\n254200K .......... .......... .......... .......... .......... 47% 1.23M 4m28s\n254250K .......... .......... .......... .......... .......... 47% 1.20M 4m28s\n254300K .......... .......... .......... .......... .......... 47% 1.19M 4m28s\n254350K .......... .......... .......... .......... .......... 47% 867K 4m28s\n254400K .......... .......... .......... .......... .......... 47% 1.23M 4m27s\n254450K .......... .......... .......... .......... .......... 47% 1.21M 4m27s\n254500K .......... .......... .......... .......... .......... 47% 1.20M 4m27s\n254550K .......... .......... .......... .......... .......... 47% 1.17M 4m27s\n254600K .......... .......... .......... .......... .......... 47% 1.19M 4m27s\n254650K .......... .......... .......... .......... .......... 47% 1.17M 4m27s\n254700K .......... .......... .......... .......... .......... 47% 1.19M 4m27s\n254750K .......... .......... .......... .......... .......... 47% 924K 4m27s\n254800K .......... .......... .......... .......... .......... 47% 1.20M 4m27s\n254850K .......... .......... .......... .......... .......... 47% 1.15M 4m27s\n254900K .......... .......... .......... .......... .......... 47% 1.20M 4m27s\n254950K .......... .......... .......... .......... .......... 47% 1.17M 4m27s\n255000K .......... .......... .......... .......... .......... 47% 1.20M 4m27s\n255050K .......... .......... .......... .......... .......... 47% 1.21M 4m27s\n255100K .......... .......... .......... .......... .......... 47% 1.17M 4m27s\n255150K .......... .......... .......... .......... .......... 47% 897K 4m27s\n255200K .......... .......... .......... .......... .......... 47% 1.20M 4m27s\n255250K .......... .......... .......... .......... .......... 48% 1.22M 4m27s\n255300K .......... .......... .......... .......... .......... 48% 1.08M 4m26s\n255350K .......... .......... .......... .......... .......... 48% 1.30M 4m26s\n255400K .......... .......... .......... .......... .......... 48% 1.20M 4m26s\n255450K .......... .......... .......... .......... .......... 48% 1.13M 4m26s\n255500K .......... .......... .......... .......... .......... 48% 1.24M 4m26s\n255550K .......... .......... .......... .......... .......... 48% 814K 4m26s\n255600K .......... .......... .......... .......... .......... 48% 1.36M 4m26s\n255650K .......... .......... .......... .......... .......... 48% 1.22M 4m26s\n255700K .......... .......... .......... .......... .......... 48% 1.17M 4m26s\n255750K .......... .......... .......... .......... .......... 48% 1.17M 4m26s\n255800K .......... .......... .......... .......... .......... 48% 1.23M 4m26s\n255850K .......... .......... .......... .......... .......... 48% 1.15M 4m26s\n255900K .......... .......... .......... .......... .......... 48% 1.20M 4m26s\n255950K .......... .......... .......... .......... .......... 48% 918K 4m26s\n256000K .......... .......... .......... .......... .......... 48% 1.20M 4m26s\n256050K .......... .......... .......... .......... .......... 48% 1.18M 4m26s\n256100K .......... .......... .......... .......... .......... 48% 1.20M 4m26s\n256150K .......... .......... .......... .......... .......... 48% 1.18M 4m26s\n256200K .......... .......... .......... .......... .......... 48% 1.20M 4m25s\n256250K .......... .......... .......... .......... .......... 48% 1.17M 4m25s\n256300K .......... .......... .......... .......... .......... 48% 1.18M 4m25s\n256350K .......... .......... .......... .......... .......... 48% 922K 4m25s\n256400K .......... .......... .......... .......... .......... 48% 1.14M 4m25s\n256450K .......... .......... .......... .......... .......... 48% 184K 4m25s\n256500K .......... .......... .......... .......... .......... 48% 312M 4m25s\n256550K .......... .......... .......... .......... .......... 48% 445M 4m25s\n256600K .......... .......... .......... .......... .......... 48% 1.44M 4m25s\n256650K .......... .......... .......... .......... .......... 48% 347M 4m25s\n256700K .......... .......... .......... .......... .......... 48% 1.35M 4m25s\n256750K .......... .......... .......... .......... .......... 48% 898K 4m25s\n256800K .......... .......... .......... .......... .......... 48% 1.19M 4m25s\n256850K .......... .......... .......... .......... .......... 48% 1.16M 4m25s\n256900K .......... .......... .......... .......... .......... 48% 1.18M 4m25s\n256950K .......... .......... .......... .......... .......... 48% 1.23M 4m25s\n257000K .......... .......... .......... .......... .......... 48% 1.17M 4m25s\n257050K .......... .......... .......... .......... .......... 48% 1.16M 4m25s\n257100K .......... .......... .......... .......... .......... 48% 1.21M 4m25s\n257150K .......... .......... .......... .......... .......... 48% 929K 4m25s\n257200K .......... .......... .......... .......... .......... 48% 1.18M 4m25s\n257250K .......... .......... .......... .......... .......... 48% 1.16M 4m24s\n257300K .......... .......... .......... .......... .......... 48% 1.23M 4m24s\n257350K .......... .......... .......... .......... .......... 48% 1.21M 4m24s\n257400K .......... .......... .......... .......... .......... 48% 176K 4m25s\n257450K .......... .......... .......... .......... .......... 48% 194M 4m24s\n257500K .......... .......... .......... .......... .......... 48% 374M 4m24s\n257550K .......... .......... .......... .......... .......... 48% 1.47M 4m24s\n257600K .......... .......... .......... .......... .......... 48% 105M 4m24s\n257650K .......... .......... .......... .......... .......... 48% 239M 4m24s\n257700K .......... .......... .......... .......... .......... 48% 161K 4m24s\n257750K .......... .......... .......... .......... .......... 48% 2.39M 4m24s\n257800K .......... .......... .......... .......... .......... 48% 72.2M 4m24s\n257850K .......... .......... .......... .......... .......... 48% 104M 4m24s\n257900K .......... .......... .......... .......... .......... 48% 127M 4m24s\n257950K .......... .......... .......... .......... .......... 48% 104M 4m24s\n258000K .......... .......... .......... .......... .......... 48% 1.24M 4m24s\n258050K .......... .......... .......... .......... .......... 48% 1.16M 4m24s\n258100K .......... .......... .......... .......... .......... 48% 1.18M 4m24s\n258150K .......... .......... .......... .......... .......... 48% 1.20M 4m24s\n258200K .......... .......... .......... .......... .......... 48% 1.12M 4m24s\n258250K .......... .......... .......... .......... .......... 48% 1.26M 4m24s\n258300K .......... .......... .......... .......... .......... 48% 1.13M 4m23s\n258350K .......... .......... .......... .......... .......... 48% 967K 4m23s\n258400K .......... .......... .......... .......... .......... 48% 1.18M 4m23s\n258450K .......... .......... .......... .......... .......... 48% 1.22M 4m23s\n258500K .......... .......... .......... .......... .......... 48% 1.17M 4m23s\n258550K .......... .......... .......... .......... .......... 48% 1.17M 4m23s\n258600K .......... .......... .......... .......... .......... 48% 1.15M 4m23s\n258650K .......... .......... .......... .......... .......... 48% 1.23M 4m23s\n258700K .......... .......... .......... .......... .......... 48% 1.19M 4m23s\n258750K .......... .......... .......... .......... .......... 48% 904K 4m23s\n258800K .......... .......... .......... .......... .......... 48% 1.17M 4m23s\n258850K .......... .......... .......... .......... .......... 48% 1.17M 4m23s\n258900K .......... .......... .......... .......... .......... 48% 1.22M 4m23s\n258950K .......... .......... .......... .......... .......... 48% 1.20M 4m23s\n259000K .......... .......... .......... .......... .......... 48% 1.19M 4m23s\n259050K .......... .......... .......... .......... .......... 48% 1.18M 4m23s\n259100K .......... .......... .......... .......... .......... 48% 1.20M 4m23s\n259150K .......... .......... .......... .......... .......... 48% 902K 4m23s\n259200K .......... .......... .......... .......... .......... 48% 1.21M 4m23s\n259250K .......... .......... .......... .......... .......... 48% 1.15M 4m22s\n259300K .......... .......... .......... .......... .......... 48% 1.22M 4m22s\n259350K .......... .......... .......... .......... .......... 48% 1.20M 4m22s\n259400K .......... .......... .......... .......... .......... 48% 1.17M 4m22s\n259450K .......... .......... .......... .......... .......... 48% 1.21M 4m22s\n259500K .......... .......... .......... .......... .......... 48% 1.13M 4m22s\n259550K .......... .......... .......... .......... .......... 48% 952K 4m22s\n259600K .......... .......... .......... .......... .......... 48% 1.12M 4m22s\n259650K .......... .......... .......... .......... .......... 48% 1.27M 4m22s\n259700K .......... .......... .......... .......... .......... 48% 1.18M 4m22s\n259750K .......... .......... .......... .......... .......... 48% 1.18M 4m22s\n259800K .......... .......... .......... .......... .......... 48% 1.20M 4m22s\n259850K .......... .......... .......... .......... .......... 48% 1.14M 4m22s\n259900K .......... .......... .......... .......... .......... 48% 1.23M 4m22s\n259950K .......... .......... .......... .......... .......... 48% 890K 4m22s\n260000K .......... .......... .......... .......... .......... 48% 1.21M 4m22s\n260050K .......... .......... .......... .......... .......... 48% 1.18M 4m22s\n260100K .......... .......... .......... .......... .......... 48% 1.19M 4m22s\n260150K .......... .......... .......... .......... .......... 48% 1.18M 4m21s\n260200K .......... .......... .......... .......... .......... 48% 1.18M 4m21s\n260250K .......... .......... .......... .......... .......... 48% 1.18M 4m21s\n260300K .......... .......... .......... .......... .......... 48% 1.21M 4m21s\n260350K .......... .......... .......... .......... .......... 48% 929K 4m21s\n260400K .......... .......... .......... .......... .......... 48% 1.15M 4m21s\n260450K .......... .......... .......... .......... .......... 48% 1.20M 4m21s\n260500K .......... .......... .......... .......... .......... 48% 1.18M 4m21s\n260550K .......... .......... .......... .......... .......... 48% 1.19M 4m21s\n260600K .......... .......... .......... .......... .......... 49% 1.19M 4m21s\n260650K .......... .......... .......... .......... .......... 49% 193K 4m21s\n260700K .......... .......... .......... .......... .......... 49% 108M 4m21s\n260750K .......... .......... .......... .......... .......... 49% 122M 4m21s\n260800K .......... .......... .......... .......... .......... 49% 1.43M 4m21s\n260850K .......... .......... .......... .......... .......... 49% 113M 4m21s\n260900K .......... .......... .......... .......... .......... 49% 1.51M 4m21s\n260950K .......... .......... .......... .......... .......... 49% 1.14M 4m21s\n261000K .......... .......... .......... .......... .......... 49% 1.23M 4m21s\n261050K .......... .......... .......... .......... .......... 49% 1.17M 4m21s\n261100K .......... .......... .......... .......... .......... 49% 1.22M 4m21s\n261150K .......... .......... .......... .......... .......... 49% 903K 4m20s\n261200K .......... .......... .......... .......... .......... 49% 1.16M 4m20s\n261250K .......... .......... .......... .......... .......... 49% 1.20M 4m20s\n261300K .......... .......... .......... .......... .......... 49% 1.21M 4m20s\n261350K .......... .......... .......... .......... .......... 49% 1.19M 4m20s\n261400K .......... .......... .......... .......... .......... 49% 1.15M 4m20s\n261450K .......... .......... .......... .......... .......... 49% 1.19M 4m20s\n261500K .......... .......... .......... .......... .......... 49% 1.22M 4m20s\n261550K .......... .......... .......... .......... .......... 49% 860K 4m20s\n261600K .......... .......... .......... .......... .......... 49% 1.30M 4m20s\n261650K .......... .......... .......... .......... .......... 49% 1.18M 4m20s\n261700K .......... .......... .......... .......... .......... 49% 212K 4m20s\n261750K .......... .......... .......... .......... .......... 49% 25.8M 4m20s\n261800K .......... .......... .......... .......... .......... 49% 24.6M 4m20s\n261850K .......... .......... .......... .......... .......... 49% 9.06M 4m20s\n261900K .......... .......... .......... .......... .......... 49% 6.92M 4m20s\n261950K .......... .......... .......... .......... .......... 49% 2.78M 4m20s\n262000K .......... .......... .......... .......... .......... 49% 1.20M 4m20s\n262050K .......... .......... .......... .......... .......... 49% 1.16M 4m20s\n262100K .......... .......... .......... .......... .......... 49% 1.21M 4m19s\n262150K .......... .......... .......... .......... .......... 49% 1.18M 4m19s\n262200K .......... .......... .......... .......... .......... 49% 1.23M 4m19s\n262250K .......... .......... .......... .......... .......... 49% 1.20M 4m19s\n262300K .......... .......... .......... .......... .......... 49% 1.18M 4m19s\n262350K .......... .......... .......... .......... .......... 49% 181K 4m19s\n262400K .......... .......... .......... .......... .......... 49% 113M 4m19s\n262450K .......... .......... .......... .......... .......... 49% 18.4M 4m19s\n262500K .......... .......... .......... .......... .......... 49% 65.2M 4m19s\n262550K .......... .......... .......... .......... .......... 49% 166M 4m19s\n262600K .......... .......... .......... .......... .......... 49% 148M 4m19s\n262650K .......... .......... .......... .......... .......... 49% 1.03M 4m19s\n262700K .......... .......... .......... .......... .......... 49% 1.19M 4m19s\n262750K .......... .......... .......... .......... .......... 49% 893K 4m19s\n262800K .......... .......... .......... .......... .......... 49% 1.19M 4m19s\n262850K .......... .......... .......... .......... .......... 49% 1.16M 4m19s\n262900K .......... .......... .......... .......... .......... 49% 1.24M 4m19s\n262950K .......... .......... .......... .......... .......... 49% 1.18M 4m19s\n263000K .......... .......... .......... .......... .......... 49% 1.20M 4m19s\n263050K .......... .......... .......... .......... .......... 49% 1.17M 4m18s\n263100K .......... .......... .......... .......... .......... 49% 1.12M 4m18s\n263150K .......... .......... .......... .......... .......... 49% 925K 4m18s\n263200K .......... .......... .......... .......... .......... 49% 1.22M 4m18s\n263250K .......... .......... .......... .......... .......... 49% 1.16M 4m18s\n263300K .......... .......... .......... .......... .......... 49% 1.23M 4m18s\n263350K .......... .......... .......... .......... .......... 49% 1.09M 4m18s\n263400K .......... .......... .......... .......... .......... 49% 1.30M 4m18s\n263450K .......... .......... .......... .......... .......... 49% 1.14M 4m18s\n263500K .......... .......... .......... .......... .......... 49% 1.20M 4m18s\n263550K .......... .......... .......... .......... .......... 49% 888K 4m18s\n263600K .......... .......... .......... .......... .......... 49% 1.28M 4m18s\n263650K .......... .......... .......... .......... .......... 49% 1.16M 4m18s\n263700K .......... .......... .......... .......... .......... 49% 1.21M 4m18s\n263750K .......... .......... .......... .......... .......... 49% 1.16M 4m18s\n263800K .......... .......... .......... .......... .......... 49% 1.19M 4m18s\n263850K .......... .......... .......... .......... .......... 49% 1.18M 4m18s\n263900K .......... .......... .......... .......... .......... 49% 1.16M 4m18s\n263950K .......... .......... .......... .......... .......... 49% 907K 4m18s\n264000K .......... .......... .......... .......... .......... 49% 1.17M 4m17s\n264050K .......... .......... .......... .......... .......... 49% 1.20M 4m17s\n264100K .......... .......... .......... .......... .......... 49% 1.14M 4m17s\n264150K .......... .......... .......... .......... .......... 49% 1.18M 4m17s\n264200K .......... .......... .......... .......... .......... 49% 1.23M 4m17s\n264250K .......... .......... .......... .......... .......... 49% 1.18M 4m17s\n264300K .......... .......... .......... .......... .......... 49% 1.21M 4m17s\n264350K .......... .......... .......... .......... .......... 49% 906K 4m17s\n264400K .......... .......... .......... .......... .......... 49% 1.18M 4m17s\n264450K .......... .......... .......... .......... .......... 49% 1.20M 4m17s\n264500K .......... .......... .......... .......... .......... 49% 1.18M 4m17s\n264550K .......... .......... .......... .......... .......... 49% 1.21M 4m17s\n264600K .......... .......... .......... .......... .......... 49% 1.17M 4m17s\n264650K .......... .......... .......... .......... .......... 49% 1.20M 4m17s\n264700K .......... .......... .......... .......... .......... 49% 1.18M 4m17s\n264750K .......... .......... .......... .......... .......... 49% 942K 4m17s\n264800K .......... .......... .......... .......... .......... 49% 1.09M 4m17s\n264850K .......... .......... .......... .......... .......... 49% 1.27M 4m17s\n264900K .......... .......... .......... .......... .......... 49% 1.15M 4m17s\n264950K .......... .......... .......... .......... .......... 49% 1.20M 4m16s\n265000K .......... .......... .......... .......... .......... 49% 1.18M 4m16s\n265050K .......... .......... .......... .......... .......... 49% 1.21M 4m16s\n265100K .......... .......... .......... .......... .......... 49% 1.18M 4m16s\n265150K .......... .......... .......... .......... .......... 49% 904K 4m16s\n265200K .......... .......... .......... .......... .......... 49% 1.20M 4m16s\n265250K .......... .......... .......... .......... .......... 49% 1.15M 4m16s\n265300K .......... .......... .......... .......... .......... 49% 1.21M 4m16s\n265350K .......... .......... .......... .......... .......... 49% 1.19M 4m16s\n265400K .......... .......... .......... .......... .......... 49% 1.17M 4m16s\n265450K .......... .......... .......... .......... .......... 49% 1.22M 4m16s\n265500K .......... .......... .......... .......... .......... 49% 1.08M 4m16s\n265550K .......... .......... .......... .......... .......... 49% 971K 4m16s\n265600K .......... .......... .......... .......... .......... 49% 1.13M 4m16s\n265650K .......... .......... .......... .......... .......... 49% 1.21M 4m16s\n265700K .......... .......... .......... .......... .......... 49% 1.25M 4m16s\n265750K .......... .......... .......... .......... .......... 49% 1.20M 4m16s\n265800K .......... .......... .......... .......... .......... 49% 1.18M 4m16s\n265850K .......... .......... .......... .......... .......... 49% 1.14M 4m16s\n265900K .......... .......... .......... .......... .......... 50% 1.19M 4m15s\n265950K .......... .......... .......... .......... .......... 50% 942K 4m15s\n266000K .......... .......... .......... .......... .......... 50% 1.17M 4m15s\n266050K .......... .......... .......... .......... .......... 50% 1.07M 4m15s\n266100K .......... .......... .......... .......... .......... 50% 1.32M 4m15s\n266150K .......... .......... .......... .......... .......... 50% 1.18M 4m15s\n266200K .......... .......... .......... .......... .......... 50% 1.14M 4m15s\n266250K .......... .......... .......... .......... .......... 50% 1.25M 4m15s\n266300K .......... .......... .......... .......... .......... 50% 1.14M 4m15s\n266350K .......... .......... .......... .......... .......... 50% 938K 4m15s\n266400K .......... .......... .......... .......... .......... 50% 1.15M 4m15s\n266450K .......... .......... .......... .......... .......... 50% 1.17M 4m15s\n266500K .......... .......... .......... .......... .......... 50% 1.20M 4m15s\n266550K .......... .......... .......... .......... .......... 50% 1.16M 4m15s\n266600K .......... .......... .......... .......... .......... 50% 1.06M 4m15s\n266650K .......... .......... .......... .......... .......... 50% 1.39M 4m15s\n266700K .......... .......... .......... .......... .......... 50% 1.22M 4m15s\n266750K .......... .......... .......... .......... .......... 50% 905K 4m15s\n266800K .......... .......... .......... .......... .......... 50% 1.17M 4m15s\n266850K .......... .......... .......... .......... .......... 50% 1.22M 4m14s\n266900K .......... .......... .......... .......... .......... 50% 1.13M 4m14s\n266950K .......... .......... .......... .......... .......... 50% 1.23M 4m14s\n267000K .......... .......... .......... .......... .......... 50% 1.15M 4m14s\n267050K .......... .......... .......... .......... .......... 50% 998K 4m14s\n267100K .......... .......... .......... .......... .......... 50% 1.63M 4m14s\n267150K .......... .......... .......... .......... .......... 50% 839K 4m14s\n267200K .......... .......... .......... .......... .......... 50% 1.27M 4m14s\n267250K .......... .......... .......... .......... .......... 50% 1.12M 4m14s\n267300K .......... .......... .......... .......... .......... 50% 1.30M 4m14s\n267350K .......... .......... .......... .......... .......... 50% 1.14M 4m14s\n267400K .......... .......... .......... .......... .......... 50% 1.24M 4m14s\n267450K .......... .......... .......... .......... .......... 50% 1.17M 4m14s\n267500K .......... .......... .......... .......... .......... 50% 1.18M 4m14s\n267550K .......... .......... .......... .......... .......... 50% 861K 4m14s\n267600K .......... .......... .......... .......... .......... 50% 1.11M 4m14s\n267650K .......... .......... .......... .......... .......... 50% 1.39M 4m14s\n267700K .......... .......... .......... .......... .......... 50% 1.16M 4m14s\n267750K .......... .......... .......... .......... .......... 50% 1.23M 4m13s\n267800K .......... .......... .......... .......... .......... 50% 1.19M 4m13s\n267850K .......... .......... .......... .......... .......... 50% 1.02M 4m13s\n267900K .......... .......... .......... .......... .......... 50% 1.40M 4m13s\n267950K .......... .......... .......... .......... .......... 50% 941K 4m13s\n268000K .......... .......... .......... .......... .......... 50% 1.09M 4m13s\n268050K .......... .......... .......... .......... .......... 50% 518K 4m13s\n268100K .......... .......... .......... .......... .......... 50% 78.4M 4m13s\n268150K .......... .......... .......... .......... .......... 50% 1.79M 4m13s\n268200K .......... .......... .......... .......... .......... 50% 1.30M 4m13s\n268250K .......... .......... .......... .......... .......... 50% 1.05M 4m13s\n268300K .......... .......... .......... .......... .......... 50% 203K 4m13s\n268350K .......... .......... .......... .......... .......... 50% 11.8M 4m13s\n268400K .......... .......... .......... .......... .......... 50% 42.7M 4m13s\n268450K .......... .......... .......... .......... .......... 50% 385K 4m13s\n268500K .......... .......... .......... .......... .......... 50% 435M 4m13s\n268550K .......... .......... .......... .......... .......... 50% 476M 4m13s\n268600K .......... .......... .......... .......... .......... 50% 136M 4m13s\n268650K .......... .......... .......... .......... .......... 50% 991K 4m13s\n268700K .......... .......... .......... .......... .......... 50% 1.18M 4m13s\n268750K .......... .......... .......... .......... .......... 50% 937K 4m13s\n268800K .......... .......... .......... .......... .......... 50% 1.19M 4m12s\n268850K .......... .......... .......... .......... .......... 50% 1.13M 4m12s\n268900K .......... .......... .......... .......... .......... 50% 1.21M 4m12s\n268950K .......... .......... .......... .......... .......... 50% 118K 4m13s\n269000K .......... .......... .......... .......... .......... 50% 1.18M 4m13s\n269050K .......... .......... .......... .......... .......... 50% 186K 4m13s\n269100K .......... .......... .......... .......... .......... 50% 117M 4m13s\n269150K .......... .......... .......... .......... .......... 50% 335M 4m13s\n269200K .......... .......... .......... .......... .......... 50% 124M 4m13s\n269250K .......... .......... .......... .......... .......... 50% 12.7M 4m12s\n269300K .......... .......... .......... .......... .......... 50% 2.74M 4m12s\n269350K .......... .......... .......... .......... .......... 50% 1.31M 4m12s\n269400K .......... .......... .......... .......... .......... 50% 1.19M 4m12s\n269450K .......... .......... .......... .......... .......... 50% 1.17M 4m12s\n269500K .......... .......... .......... .......... .......... 50% 1.25M 4m12s\n269550K .......... .......... .......... .......... .......... 50% 918K 4m12s\n269600K .......... .......... .......... .......... .......... 50% 1.15M 4m12s\n269650K .......... .......... .......... .......... .......... 50% 1019K 4m12s\n269700K .......... .......... .......... .......... .......... 50% 1.53M 4m12s\n269750K .......... .......... .......... .......... .......... 50% 1.13M 4m12s\n269800K .......... .......... .......... .......... .......... 50% 1.19M 4m12s\n269850K .......... .......... .......... .......... .......... 50% 1.11M 4m12s\n269900K .......... .......... .......... .......... .......... 50% 1.19M 4m12s\n269950K .......... .......... .......... .......... .......... 50% 945K 4m12s\n270000K .......... .......... .......... .......... .......... 50% 1.31M 4m12s\n270050K .......... .......... .......... .......... .......... 50% 1.11M 4m12s\n270100K .......... .......... .......... .......... .......... 50% 1.25M 4m11s\n270150K .......... .......... .......... .......... .......... 50% 1.16M 4m11s\n270200K .......... .......... .......... .......... .......... 50% 1.18M 4m11s\n270250K .......... .......... .......... .......... .......... 50% 1.20M 4m11s\n270300K .......... .......... .......... .......... .......... 50% 1.22M 4m11s\n270350K .......... .......... .......... .......... .......... 50% 890K 4m11s\n270400K .......... .......... .......... .......... .......... 50% 1.23M 4m11s\n270450K .......... .......... .......... .......... .......... 50% 1.17M 4m11s\n270500K .......... .......... .......... .......... .......... 50% 1.20M 4m11s\n270550K .......... .......... .......... .......... .......... 50% 169K 4m11s\n270600K .......... .......... .......... .......... .......... 50% 3.80M 4m11s\n270650K .......... .......... .......... .......... .......... 50% 68.3M 4m11s\n270700K .......... .......... .......... .......... .......... 50% 108M 4m11s\n270750K .......... .......... .......... .......... .......... 50% 951K 4m11s\n270800K .......... .......... .......... .......... .......... 50% 73.9M 4m11s\n270850K .......... .......... .......... .......... .......... 50% 114M 4m11s\n270900K .......... .......... .......... .......... .......... 50% 778K 4m11s\n270950K .......... .......... .......... .......... .......... 50% 1.19M 4m11s\n271000K .......... .......... .......... .......... .......... 50% 1.20M 4m11s\n271050K .......... .......... .......... .......... .......... 50% 1.20M 4m11s\n271100K .......... .......... .......... .......... .......... 50% 1.17M 4m10s\n271150K .......... .......... .......... .......... .......... 50% 885K 4m10s\n271200K .......... .......... .......... .......... .......... 51% 1.23M 4m10s\n271250K .......... .......... .......... .......... .......... 51% 1.20M 4m10s\n271300K .......... .......... .......... .......... .......... 51% 1.22M 4m10s\n271350K .......... .......... .......... .......... .......... 51% 1.18M 4m10s\n271400K .......... .......... .......... .......... .......... 51% 1.12M 4m10s\n271450K .......... .......... .......... .......... .......... 51% 1.24M 4m10s\n271500K .......... .......... .......... .......... .......... 51% 1.16M 4m10s\n271550K .......... .......... .......... .......... .......... 51% 163K 4m10s\n271600K .......... .......... .......... .......... .......... 51% 67.9M 4m10s\n271650K .......... .......... .......... .......... .......... 51% 79.6M 4m10s\n271700K .......... .......... .......... .......... .......... 51% 111M 4m10s\n271750K .......... .......... .......... .......... .......... 51% 1.53M 4m10s\n271800K .......... .......... .......... .......... .......... 51% 151M 4m10s\n271850K .......... .......... .......... .......... .......... 51% 2.74M 4m10s\n271900K .......... .......... .......... .......... .......... 51% 1.17M 4m10s\n271950K .......... .......... .......... .......... .......... 51% 207K 4m10s\n272000K .......... .......... .......... .......... .......... 51% 165M 4m10s\n272050K .......... .......... .......... .......... .......... 51% 180M 4m10s\n272100K .......... .......... .......... .......... .......... 51% 176M 4m10s\n272150K .......... .......... .......... .......... .......... 51% 71.1M 4m9s\n272200K .......... .......... .......... .......... .......... 51% 971K 4m9s\n272250K .......... .......... .......... .......... .......... 51% 1.20M 4m9s\n272300K .......... .......... .......... .......... .......... 51% 1.21M 4m9s\n272350K .......... .......... .......... .......... .......... 51% 905K 4m9s\n272400K .......... .......... .......... .......... .......... 51% 1.20M 4m9s\n272450K .......... .......... .......... .......... .......... 51% 1.19M 4m9s\n272500K .......... .......... .......... .......... .......... 51% 1.21M 4m9s\n272550K .......... .......... .......... .......... .......... 51% 1.12M 4m9s\n272600K .......... .......... .......... .......... .......... 51% 1.18M 4m9s\n272650K .......... .......... .......... .......... .......... 51% 1.21M 4m9s\n272700K .......... .......... .......... .......... .......... 51% 1.19M 4m9s\n272750K .......... .......... .......... .......... .......... 51% 892K 4m9s\n272800K .......... .......... .......... .......... .......... 51% 1.07M 4m9s\n272850K .......... .......... .......... .......... .......... 51% 1.36M 4m9s\n272900K .......... .......... .......... .......... .......... 51% 1.19M 4m9s\n272950K .......... .......... .......... .......... .......... 51% 1.21M 4m9s\n273000K .......... .......... .......... .......... .......... 51% 1.15M 4m9s\n273050K .......... .......... .......... .......... .......... 51% 1.22M 4m9s\n273100K .......... .......... .......... .......... .......... 51% 1.21M 4m8s\n273150K .......... .......... .......... .......... .......... 51% 849K 4m8s\n273200K .......... .......... .......... .......... .......... 51% 1.15M 4m8s\n273250K .......... .......... .......... .......... .......... 51% 1.38M 4m8s\n273300K .......... .......... .......... .......... .......... 51% 1.12M 4m8s\n273350K .......... .......... .......... .......... .......... 51% 1.27M 4m8s\n273400K .......... .......... .......... .......... .......... 51% 1.18M 4m8s\n273450K .......... .......... .......... .......... .......... 51% 1.16M 4m8s\n273500K .......... .......... .......... .......... .......... 51% 1.20M 4m8s\n273550K .......... .......... .......... .......... .......... 51% 937K 4m8s\n273600K .......... .......... .......... .......... .......... 51% 1.16M 4m8s\n273650K .......... .......... .......... .......... .......... 51% 1.18M 4m8s\n273700K .......... .......... .......... .......... .......... 51% 1.20M 4m8s\n273750K .......... .......... .......... .......... .......... 51% 1.17M 4m8s\n273800K .......... .......... .......... .......... .......... 51% 1.18M 4m8s\n273850K .......... .......... .......... .......... .......... 51% 1.23M 4m8s\n273900K .......... .......... .......... .......... .......... 51% 1.19M 4m8s\n273950K .......... .......... .......... .......... .......... 51% 872K 4m8s\n274000K .......... .......... .......... .......... .......... 51% 1.21M 4m8s\n274050K .......... .......... .......... .......... .......... 51% 1.19M 4m7s\n274100K .......... .......... .......... .......... .......... 51% 1.21M 4m7s\n274150K .......... .......... .......... .......... .......... 51% 1.15M 4m7s\n274200K .......... .......... .......... .......... .......... 51% 1.20M 4m7s\n274250K .......... .......... .......... .......... .......... 51% 1.19M 4m7s\n274300K .......... .......... .......... .......... .......... 51% 1.17M 4m7s\n274350K .......... .......... .......... .......... .......... 51% 913K 4m7s\n274400K .......... .......... .......... .......... .......... 51% 1.22M 4m7s\n274450K .......... .......... .......... .......... .......... 51% 1.17M 4m7s\n274500K .......... .......... .......... .......... .......... 51% 1.19M 4m7s\n274550K .......... .......... .......... .......... .......... 51% 1.20M 4m7s\n274600K .......... .......... .......... .......... .......... 51% 1.19M 4m7s\n274650K .......... .......... .......... .......... .......... 51% 1.15M 4m7s\n274700K .......... .......... .......... .......... .......... 51% 181K 4m7s\n274750K .......... .......... .......... .......... .......... 51% 64.3M 4m7s\n274800K .......... .......... .......... .......... .......... 51% 498K 4m7s\n274850K .......... .......... .......... .......... .......... 51% 51.6M 4m7s\n274900K .......... .......... .......... .......... .......... 51% 83.6M 4m7s\n274950K .......... .......... .......... .......... .......... 51% 1006K 4m7s\n275000K .......... .......... .......... .......... .......... 51% 1.41M 4m7s\n275050K .......... .......... .......... .......... .......... 51% 1.17M 4m7s\n275100K .......... .......... .......... .......... .......... 51% 1.21M 4m7s\n275150K .......... .......... .......... .......... .......... 51% 891K 4m6s\n275200K .......... .......... .......... .......... .......... 51% 1.14M 4m6s\n275250K .......... .......... .......... .......... .......... 51% 1.24M 4m6s\n275300K .......... .......... .......... .......... .......... 51% 1.12M 4m6s\n275350K .......... .......... .......... .......... .......... 51% 1.23M 4m6s\n275400K .......... .......... .......... .......... .......... 51% 1.23M 4m6s\n275450K .......... .......... .......... .......... .......... 51% 1.19M 4m6s\n275500K .......... .......... .......... .......... .......... 51% 1.19M 4m6s\n275550K .......... .......... .......... .......... .......... 51% 897K 4m6s\n275600K .......... .......... .......... .......... .......... 51% 1.12M 4m6s\n275650K .......... .......... .......... .......... .......... 51% 1.25M 4m6s\n275700K .......... .......... .......... .......... .......... 51% 1.20M 4m6s\n275750K .......... .......... .......... .......... .......... 51% 1.17M 4m6s\n275800K .......... .......... .......... .......... .......... 51% 1.20M 4m6s\n275850K .......... .......... .......... .......... .......... 51% 1.20M 4m6s\n275900K .......... .......... .......... .......... .......... 51% 1.17M 4m6s\n275950K .......... .......... .......... .......... .......... 51% 910K 4m6s\n276000K .......... .......... .......... .......... .......... 51% 1.18M 4m6s\n276050K .......... .......... .......... .......... .......... 51% 1.18M 4m6s\n276100K .......... .......... .......... .......... .......... 51% 1.16M 4m5s\n276150K .......... .......... .......... .......... .......... 51% 1.23M 4m5s\n276200K .......... .......... .......... .......... .......... 51% 181K 4m6s\n276250K .......... .......... .......... .......... .......... 51% 132M 4m5s\n276300K .......... .......... .......... .......... .......... 51% 470M 4m5s\n276350K .......... .......... .......... .......... .......... 51% 1.42M 4m5s\n276400K .......... .......... .......... .......... .......... 51% 269M 4m5s\n276450K .......... .......... .......... .......... .......... 51% 141M 4m5s\n276500K .......... .......... .......... .......... .......... 51% 193K 4m5s\n276550K .......... .......... .......... .......... .......... 52% 1.59M 4m5s\n276600K .......... .......... .......... .......... .......... 52% 1008K 4m5s\n276650K .......... .......... .......... .......... .......... 52% 119M 4m5s\n276700K .......... .......... .......... .......... .......... 52% 172M 4m5s\n276750K .......... .......... .......... .......... .......... 52% 67.0M 4m5s\n276800K .......... .......... .......... .......... .......... 52% 4.81M 4m5s\n276850K .......... .......... .......... .......... .......... 52% 1.18M 4m5s\n276900K .......... .......... .......... .......... .......... 52% 1.16M 4m5s\n276950K .......... .......... .......... .......... .......... 52% 1.27M 4m5s\n277000K .......... .......... .......... .......... .......... 52% 1.16M 4m5s\n277050K .......... .......... .......... .......... .......... 52% 1.19M 4m5s\n277100K .......... .......... .......... .......... .......... 52% 1.21M 4m4s\n277150K .......... .......... .......... .......... .......... 52% 900K 4m4s\n277200K .......... .......... .......... .......... .......... 52% 1.19M 4m4s\n277250K .......... .......... .......... .......... .......... 52% 1.18M 4m4s\n277300K .......... .......... .......... .......... .......... 52% 1.15M 4m4s\n277350K .......... .......... .......... .......... .......... 52% 1.22M 4m4s\n277400K .......... .......... .......... .......... .......... 52% 159K 4m4s\n277450K .......... .......... .......... .......... .......... 52% 83.4M 4m4s\n277500K .......... .......... .......... .......... .......... 52% 103M 4m4s\n277550K .......... .......... .......... .......... .......... 52% 497K 4m4s\n277600K .......... .......... .......... .......... .......... 52% 72.8M 4m4s\n277650K .......... .......... .......... .......... .......... 52% 1.35M 4m4s\n277700K .......... .......... .......... .......... .......... 52% 1.18M 4m4s\n277750K .......... .......... .......... .......... .......... 52% 1.19M 4m4s\n277800K .......... .......... .......... .......... .......... 52% 1.19M 4m4s\n277850K .......... .......... .......... .......... .......... 52% 1.19M 4m4s\n277900K .......... .......... .......... .......... .......... 52% 1.20M 4m4s\n277950K .......... .......... .......... .......... .......... 52% 865K 4m4s\n278000K .......... .......... .......... .......... .......... 52% 1.27M 4m4s\n278050K .......... .......... .......... .......... .......... 52% 1.15M 4m4s\n278100K .......... .......... .......... .......... .......... 52% 1.23M 4m4s\n278150K .......... .......... .......... .......... .......... 52% 1.22M 4m4s\n278200K .......... .......... .......... .......... .......... 52% 1.15M 4m4s\n278250K .......... .......... .......... .......... .......... 52% 1.22M 4m3s\n278300K .......... .......... .......... .......... .......... 52% 1.20M 4m3s\n278350K .......... .......... .......... .......... .......... 52% 868K 4m3s\n278400K .......... .......... .......... .......... .......... 52% 1.26M 4m3s\n278450K .......... .......... .......... .......... .......... 52% 1.10M 4m3s\n278500K .......... .......... .......... .......... .......... 52% 1.20M 4m3s\n278550K .......... .......... .......... .......... .......... 52% 1.28M 4m3s\n278600K .......... .......... .......... .......... .......... 52% 1.13M 4m3s\n278650K .......... .......... .......... .......... .......... 52% 1.23M 4m3s\n278700K .......... .......... .......... .......... .......... 52% 1.12M 4m3s\n278750K .......... .......... .......... .......... .......... 52% 935K 4m3s\n278800K .......... .......... .......... .......... .......... 52% 1.16M 4m3s\n278850K .......... .......... .......... .......... .......... 52% 1.17M 4m3s\n278900K .......... .......... .......... .......... .......... 52% 1.23M 4m3s\n278950K .......... .......... .......... .......... .......... 52% 1022K 4m3s\n279000K .......... .......... .......... .......... .......... 52% 1.34M 4m3s\n279050K .......... .......... .......... .......... .......... 52% 1.20M 4m3s\n279100K .......... .......... .......... .......... .......... 52% 1.17M 4m3s\n279150K .......... .......... .......... .......... .......... 52% 903K 4m3s\n279200K .......... .......... .......... .......... .......... 52% 1.21M 4m2s\n279250K .......... .......... .......... .......... .......... 52% 1.18M 4m2s\n279300K .......... .......... .......... .......... .......... 52% 205K 4m3s\n279350K .......... .......... .......... .......... .......... 52% 415M 4m2s\n279400K .......... .......... .......... .......... .......... 52% 197M 4m2s\n279450K .......... .......... .......... .......... .......... 52% 1.44M 4m2s\n279500K .......... .......... .......... .......... .......... 52% 318M 4m2s\n279550K .......... .......... .......... .......... .......... 52% 885K 4m2s\n279600K .......... .......... .......... .......... .......... 52% 205K 4m2s\n279650K .......... .......... .......... .......... .......... 52% 2.78M 4m2s\n279700K .......... .......... .......... .......... .......... 52% 8.14M 4m2s\n279750K .......... .......... .......... .......... .......... 52% 90.5M 4m2s\n279800K .......... .......... .......... .......... .......... 52% 139M 4m2s\n279850K .......... .......... .......... .......... .......... 52% 169M 4m2s\n279900K .......... .......... .......... .......... .......... 52% 2.29M 4m2s\n279950K .......... .......... .......... .......... .......... 52% 939K 4m2s\n280000K .......... .......... .......... .......... .......... 52% 1.17M 4m2s\n280050K .......... .......... .......... .......... .......... 52% 1.11M 4m2s\n280100K .......... .......... .......... .......... .......... 52% 1.29M 4m2s\n280150K .......... .......... .......... .......... .......... 52% 217K 4m2s\n280200K .......... .......... .......... .......... .......... 52% 18.2M 4m2s\n280250K .......... .......... .......... .......... .......... 52% 354M 4m2s\n280300K .......... .......... .......... .......... .......... 52% 535K 4m2s\n280350K .......... .......... .......... .......... .......... 52% 375M 4m1s\n280400K .......... .......... .......... .......... .......... 52% 1.43M 4m1s\n280450K .......... .......... .......... .......... .......... 52% 18.4M 4m1s\n280500K .......... .......... .......... .......... .......... 52% 1.20M 4m1s\n280550K .......... .......... .......... .......... .......... 52% 1.21M 4m1s\n280600K .......... .......... .......... .......... .......... 52% 740K 4m1s\n280650K .......... .......... .......... .......... .......... 52% 3.23M 4m1s\n280700K .......... .......... .......... .......... .......... 52% 1.20M 4m1s\n280750K .......... .......... .......... .......... .......... 52% 909K 4m1s\n280800K .......... .......... .......... .......... .......... 52% 1.17M 4m1s\n280850K .......... .......... .......... .......... .......... 52% 1.14M 4m1s\n280900K .......... .......... .......... .......... .......... 52% 1.23M 4m1s\n280950K .......... .......... .......... .......... .......... 52% 1.19M 4m1s\n281000K .......... .......... .......... .......... .......... 52% 1.21M 4m1s\n281050K .......... .......... .......... .......... .......... 52% 1.22M 4m1s\n281100K .......... .......... .......... .......... .......... 52% 1.18M 4m1s\n281150K .......... .......... .......... .......... .......... 52% 211K 4m1s\n281200K .......... .......... .......... .......... .......... 52% 370M 4m1s\n281250K .......... .......... .......... .......... .......... 52% 9.44M 4m1s\n281300K .......... .......... .......... .......... .......... 52% 387M 4m0s\n281350K .......... .......... .......... .......... .......... 52% 12.5M 4m0s\n281400K .......... .......... .......... .......... .......... 52% 1.52M 4m0s\n281450K .......... .......... .......... .......... .......... 52% 1.24M 4m0s\n281500K .......... .......... .......... .......... .......... 52% 1.13M 4m0s\n281550K .......... .......... .......... .......... .......... 52% 924K 4m0s\n281600K .......... .......... .......... .......... .......... 52% 1.19M 4m0s\n281650K .......... .......... .......... .......... .......... 52% 1.15M 4m0s\n281700K .......... .......... .......... .......... .......... 52% 1.21M 4m0s\n281750K .......... .......... .......... .......... .......... 52% 1.18M 4m0s\n281800K .......... .......... .......... .......... .......... 52% 1.13M 4m0s\n281850K .......... .......... .......... .......... .......... 53% 1.23M 4m0s\n281900K .......... .......... .......... .......... .......... 53% 1.21M 4m0s\n281950K .......... .......... .......... .......... .......... 53% 912K 4m0s\n282000K .......... .......... .......... .......... .......... 53% 1.18M 4m0s\n282050K .......... .......... .......... .......... .......... 53% 1.18M 4m0s\n282100K .......... .......... .......... .......... .......... 53% 1.22M 4m0s\n282150K .......... .......... .......... .......... .......... 53% 1.22M 3m59s\n282200K .......... .......... .......... .......... .......... 53% 1.20M 3m59s\n282250K .......... .......... .......... .......... .......... 53% 1.18M 3m59s\n282300K .......... .......... .......... .......... .......... 53% 1.17M 3m59s\n282350K .......... .......... .......... .......... .......... 53% 205K 3m59s\n282400K .......... .......... .......... .......... .......... 53% 124M 3m59s\n282450K .......... .......... .......... .......... .......... 53% 71.1M 3m59s\n282500K .......... .......... .......... .......... .......... 53% 31.2M 3m59s\n282550K .......... .......... .......... .......... .......... 53% 132M 3m59s\n282600K .......... .......... .......... .......... .......... 53% 1.21M 3m59s\n282650K .......... .......... .......... .......... .......... 53% 1.21M 3m59s\n282700K .......... .......... .......... .......... .......... 53% 1.19M 3m59s\n282750K .......... .......... .......... .......... .......... 53% 908K 3m59s\n282800K .......... .......... .......... .......... .......... 53% 1.18M 3m59s\n282850K .......... .......... .......... .......... .......... 53% 1.19M 3m59s\n282900K .......... .......... .......... .......... .......... 53% 1.22M 3m59s\n282950K .......... .......... .......... .......... .......... 53% 1.18M 3m59s\n283000K .......... .......... .......... .......... .......... 53% 1.08M 3m59s\n283050K .......... .......... .......... .......... .......... 53% 1.30M 3m59s\n283100K .......... .......... .......... .......... .......... 53% 1.17M 3m59s\n283150K .......... .......... .......... .......... .......... 53% 886K 3m58s\n283200K .......... .......... .......... .......... .......... 53% 1.31M 3m58s\n283250K .......... .......... .......... .......... .......... 53% 1.18M 3m58s\n283300K .......... .......... .......... .......... .......... 53% 1.18M 3m58s\n283350K .......... .......... .......... .......... .......... 53% 1.17M 3m58s\n283400K .......... .......... .......... .......... .......... 53% 1.20M 3m58s\n283450K .......... .......... .......... .......... .......... 53% 1.19M 3m58s\n283500K .......... .......... .......... .......... .......... 53% 1.13M 3m58s\n283550K .......... .......... .......... .......... .......... 53% 938K 3m58s\n283600K .......... .......... .......... .......... .......... 53% 1.18M 3m58s\n283650K .......... .......... .......... .......... .......... 53% 1.14M 3m58s\n283700K .......... .......... .......... .......... .......... 53% 1.19M 3m58s\n283750K .......... .......... .......... .......... .......... 53% 1.25M 3m58s\n283800K .......... .......... .......... .......... .......... 53% 1.16M 3m58s\n283850K .......... .......... .......... .......... .......... 53% 1.15M 3m58s\n283900K .......... .......... .......... .......... .......... 53% 1.25M 3m58s\n283950K .......... .......... .......... .......... .......... 53% 913K 3m58s\n284000K .......... .......... .......... .......... .......... 53% 1.16M 3m58s\n284050K .......... .......... .......... .......... .......... 53% 1.22M 3m58s\n284100K .......... .......... .......... .......... .......... 53% 1.15M 3m57s\n284150K .......... .......... .......... .......... .......... 53% 1.21M 3m57s\n284200K .......... .......... .......... .......... .......... 53% 1.19M 3m57s\n284250K .......... .......... .......... .......... .......... 53% 1.17M 3m57s\n284300K .......... .......... .......... .......... .......... 53% 1.22M 3m57s\n284350K .......... .......... .......... .......... .......... 53% 932K 3m57s\n284400K .......... .......... .......... .......... .......... 53% 1.16M 3m57s\n284450K .......... .......... .......... .......... .......... 53% 1.18M 3m57s\n284500K .......... .......... .......... .......... .......... 53% 1.20M 3m57s\n284550K .......... .......... .......... .......... .......... 53% 1.18M 3m57s\n284600K .......... .......... .......... .......... .......... 53% 1.14M 3m57s\n284650K .......... .......... .......... .......... .......... 53% 1.23M 3m57s\n284700K .......... .......... .......... .......... .......... 53% 1.21M 3m57s\n284750K .......... .......... .......... .......... .......... 53% 894K 3m57s\n284800K .......... .......... .......... .......... .......... 53% 1.19M 3m57s\n284850K .......... .......... .......... .......... .......... 53% 1.10M 3m57s\n284900K .......... .......... .......... .......... .......... 53% 898K 3m57s\n284950K .......... .......... .......... .......... .......... 53% 2.09M 3m57s\n285000K .......... .......... .......... .......... .......... 53% 1.19M 3m57s\n285050K .......... .......... .......... .......... .......... 53% 1.17M 3m56s\n285100K .......... .......... .......... .......... .......... 53% 1.21M 3m56s\n285150K .......... .......... .......... .......... .......... 53% 869K 3m56s\n285200K .......... .......... .......... .......... .......... 53% 1.20M 3m56s\n285250K .......... .......... .......... .......... .......... 53% 1.27M 3m56s\n285300K .......... .......... .......... .......... .......... 53% 1.17M 3m56s\n285350K .......... .......... .......... .......... .......... 53% 1.21M 3m56s\n285400K .......... .......... .......... .......... .......... 53% 1.17M 3m56s\n285450K .......... .......... .......... .......... .......... 53% 1.03M 3m56s\n285500K .......... .......... .......... .......... .......... 53% 1.41M 3m56s\n285550K .......... .......... .......... .......... .......... 53% 902K 3m56s\n285600K .......... .......... .......... .......... .......... 53% 1.17M 3m56s\n285650K .......... .......... .......... .......... .......... 53% 1.19M 3m56s\n285700K .......... .......... .......... .......... .......... 53% 1.17M 3m56s\n285750K .......... .......... .......... .......... .......... 53% 1.18M 3m56s\n285800K .......... .......... .......... .......... .......... 53% 1.09M 3m56s\n285850K .......... .......... .......... .......... .......... 53% 1.28M 3m56s\n285900K .......... .......... .......... .......... .......... 53% 1.24M 3m56s\n285950K .......... .......... .......... .......... .......... 53% 911K 3m56s\n286000K .......... .......... .......... .......... .......... 53% 1.19M 3m55s\n286050K .......... .......... .......... .......... .......... 53% 1.19M 3m55s\n286100K .......... .......... .......... .......... .......... 53% 1.19M 3m55s\n286150K .......... .......... .......... .......... .......... 53% 1.11M 3m55s\n286200K .......... .......... .......... .......... .......... 53% 1.22M 3m55s\n286250K .......... .......... .......... .......... .......... 53% 1.19M 3m55s\n286300K .......... .......... .......... .......... .......... 53% 1.20M 3m55s\n286350K .......... .......... .......... .......... .......... 53% 913K 3m55s\n286400K .......... .......... .......... .......... .......... 53% 1.19M 3m55s\n286450K .......... .......... .......... .......... .......... 53% 1.19M 3m55s\n286500K .......... .......... .......... .......... .......... 53% 1.16M 3m55s\n286550K .......... .......... .......... .......... .......... 53% 1.18M 3m55s\n286600K .......... .......... .......... .......... .......... 53% 1.22M 3m55s\n286650K .......... .......... .......... .......... .......... 53% 1.20M 3m55s\n286700K .......... .......... .......... .......... .......... 53% 1.13M 3m55s\n286750K .......... .......... .......... .......... .......... 53% 903K 3m55s\n286800K .......... .......... .......... .......... .......... 53% 1.17M 3m55s\n286850K .......... .......... .......... .......... .......... 53% 1.21M 3m55s\n286900K .......... .......... .......... .......... .......... 53% 1.19M 3m55s\n286950K .......... .......... .......... .......... .......... 53% 1.17M 3m54s\n287000K .......... .......... .......... .......... .......... 53% 1.21M 3m54s\n287050K .......... .......... .......... .......... .......... 53% 1.18M 3m54s\n287100K .......... .......... .......... .......... .......... 53% 1.17M 3m54s\n287150K .......... .......... .......... .......... .......... 53% 938K 3m54s\n287200K .......... .......... .......... .......... .......... 54% 1.18M 3m54s\n287250K .......... .......... .......... .......... .......... 54% 1.19M 3m54s\n287300K .......... .......... .......... .......... .......... 54% 1.17M 3m54s\n287350K .......... .......... .......... .......... .......... 54% 1.18M 3m54s\n287400K .......... .......... .......... .......... .......... 54% 1.19M 3m54s\n287450K .......... .......... .......... .......... .......... 54% 1.19M 3m54s\n287500K .......... .......... .......... .......... .......... 54% 1.20M 3m54s\n287550K .......... .......... .......... .......... .......... 54% 900K 3m54s\n287600K .......... .......... .......... .......... .......... 54% 1.22M 3m54s\n287650K .......... .......... .......... .......... .......... 54% 1.17M 3m54s\n287700K .......... .......... .......... .......... .......... 54% 1.10M 3m54s\n287750K .......... .......... .......... .......... .......... 54% 1.31M 3m54s\n287800K .......... .......... .......... .......... .......... 54% 1.17M 3m54s\n287850K .......... .......... .......... .......... .......... 54% 1.18M 3m54s\n287900K .......... .......... .......... .......... .......... 54% 1.22M 3m53s\n287950K .......... .......... .......... .......... .......... 54% 868K 3m53s\n288000K .......... .......... .......... .......... .......... 54% 1.18M 3m53s\n288050K .......... .......... .......... .......... .......... 54% 1.17M 3m53s\n288100K .......... .......... .......... .......... .......... 54% 1.10M 3m53s\n288150K .......... .......... .......... .......... .......... 54% 1.33M 3m53s\n288200K .......... .......... .......... .......... .......... 54% 1.17M 3m53s\n288250K .......... .......... .......... .......... .......... 54% 1.23M 3m53s\n288300K .......... .......... .......... .......... .......... 54% 1.10M 3m53s\n288350K .......... .......... .......... .......... .......... 54% 927K 3m53s\n288400K .......... .......... .......... .......... .......... 54% 1.22M 3m53s\n288450K .......... .......... .......... .......... .......... 54% 1.22M 3m53s\n288500K .......... .......... .......... .......... .......... 54% 1.20M 3m53s\n288550K .......... .......... .......... .......... .......... 54% 1.17M 3m53s\n288600K .......... .......... .......... .......... .......... 54% 1.21M 3m53s\n288650K .......... .......... .......... .......... .......... 54% 1.19M 3m53s\n288700K .......... .......... .......... .......... .......... 54% 1.14M 3m53s\n288750K .......... .......... .......... .......... .......... 54% 938K 3m53s\n288800K .......... .......... .......... .......... .......... 54% 1.16M 3m53s\n288850K .......... .......... .......... .......... .......... 54% 1.15M 3m53s\n288900K .......... .......... .......... .......... .......... 54% 1.20M 3m52s\n288950K .......... .......... .......... .......... .......... 54% 1.20M 3m52s\n289000K .......... .......... .......... .......... .......... 54% 1.20M 3m52s\n289050K .......... .......... .......... .......... .......... 54% 1.22M 3m52s\n289100K .......... .......... .......... .......... .......... 54% 1.14M 3m52s\n289150K .......... .......... .......... .......... .......... 54% 169K 3m52s\n289200K .......... .......... .......... .......... .......... 54% 221M 3m52s\n289250K .......... .......... .......... .......... .......... 54% 260M 3m52s\n289300K .......... .......... .......... .......... .......... 54% 497K 3m52s\n289350K .......... .......... .......... .......... .......... 54% 359M 3m52s\n289400K .......... .......... .......... .......... .......... 54% 535M 3m52s\n289450K .......... .......... .......... .......... .......... 54% 717K 3m52s\n289500K .......... .......... .......... .......... .......... 54% 1.23M 3m52s\n289550K .......... .......... .......... .......... .......... 54% 922K 3m52s\n289600K .......... .......... .......... .......... .......... 54% 1.15M 3m52s\n289650K .......... .......... .......... .......... .......... 54% 1.26M 3m52s\n289700K .......... .......... .......... .......... .......... 54% 1.16M 3m52s\n289750K .......... .......... .......... .......... .......... 54% 1.16M 3m52s\n289800K .......... .......... .......... .......... .......... 54% 1.16M 3m52s\n289850K .......... .......... .......... .......... .......... 54% 1.14M 3m52s\n289900K .......... .......... .......... .......... .......... 54% 1.23M 3m52s\n289950K .......... .......... .......... .......... .......... 54% 925K 3m52s\n290000K .......... .......... .......... .......... .......... 54% 1.18M 3m51s\n290050K .......... .......... .......... .......... .......... 54% 1.21M 3m51s\n290100K .......... .......... .......... .......... .......... 54% 1.13M 3m51s\n290150K .......... .......... .......... .......... .......... 54% 1.15M 3m51s\n290200K .......... .......... .......... .......... .......... 54% 1.23M 3m51s\n290250K .......... .......... .......... .......... .......... 54% 1.23M 3m51s\n290300K .......... .......... .......... .......... .......... 54% 1.19M 3m51s\n290350K .......... .......... .......... .......... .......... 54% 942K 3m51s\n290400K .......... .......... .......... .......... .......... 54% 1.16M 3m51s\n290450K .......... .......... .......... .......... .......... 54% 1.17M 3m51s\n290500K .......... .......... .......... .......... .......... 54% 1.16M 3m51s\n290550K .......... .......... .......... .......... .......... 54% 1.24M 3m51s\n290600K .......... .......... .......... .......... .......... 54% 1.19M 3m51s\n290650K .......... .......... .......... .......... .......... 54% 1.19M 3m51s\n290700K .......... .......... .......... .......... .......... 54% 1.12M 3m51s\n290750K .......... .......... .......... .......... .......... 54% 207K 3m51s\n290800K .......... .......... .......... .......... .......... 54% 162M 3m51s\n290850K .......... .......... .......... .......... .......... 54% 520M 3m51s\n290900K .......... .......... .......... .......... .......... 54% 4.60M 3m51s\n290950K .......... .......... .......... .......... .......... 54% 5.65M 3m51s\n291000K .......... .......... .......... .......... .......... 54% 5.21M 3m50s\n291050K .......... .......... .......... .......... .......... 54% 204K 3m51s\n291100K .......... .......... .......... .......... .......... 54% 83.3M 3m50s\n291150K .......... .......... .......... .......... .......... 54% 332M 3m50s\n291200K .......... .......... .......... .......... .......... 54% 526M 3m50s\n291250K .......... .......... .......... .......... .......... 54% 469M 3m50s\n291300K .......... .......... .......... .......... .......... 54% 1.28M 3m50s\n291350K .......... .......... .......... .......... .......... 54% 1.23M 3m50s\n291400K .......... .......... .......... .......... .......... 54% 187K 3m50s\n291450K .......... .......... .......... .......... .......... 54% 6.06M 3m50s\n291500K .......... .......... .......... .......... .......... 54% 100M 3m50s\n291550K .......... .......... .......... .......... .......... 54% 246M 3m50s\n291600K .......... .......... .......... .......... .......... 54% 258M 3m50s\n291650K .......... .......... .......... .......... .......... 54% 307M 3m50s\n291700K .......... .......... .......... .......... .......... 54% 926K 3m50s\n291750K .......... .......... .......... .......... .......... 54% 1.23M 3m50s\n291800K .......... .......... .......... .......... .......... 54% 1.23M 3m50s\n291850K .......... .......... .......... .......... .......... 54% 1.14M 3m50s\n291900K .......... .......... .......... .......... .......... 54% 1.08M 3m50s\n291950K .......... .......... .......... .......... .......... 54% 1.02M 3m49s\n292000K .......... .......... .......... .......... .......... 54% 1.17M 3m49s\n292050K .......... .......... .......... .......... .......... 54% 1.13M 3m49s\n292100K .......... .......... .......... .......... .......... 54% 1.18M 3m49s\n292150K .......... .......... .......... .......... .......... 54% 1.20M 3m49s\n292200K .......... .......... .......... .......... .......... 54% 1.10M 3m49s\n292250K .......... .......... .......... .......... .......... 54% 1.25M 3m49s\n292300K .......... .......... .......... .......... .......... 54% 1.17M 3m49s\n292350K .......... .......... .......... .......... .......... 54% 929K 3m49s\n292400K .......... .......... .......... .......... .......... 54% 1.21M 3m49s\n292450K .......... .......... .......... .......... .......... 54% 1.20M 3m49s\n292500K .......... .......... .......... .......... .......... 55% 1.17M 3m49s\n292550K .......... .......... .......... .......... .......... 55% 1.23M 3m49s\n292600K .......... .......... .......... .......... .......... 55% 1.17M 3m49s\n292650K .......... .......... .......... .......... .......... 55% 1.12M 3m49s\n292700K .......... .......... .......... .......... .......... 55% 1.23M 3m49s\n292750K .......... .......... .......... .......... .......... 55% 902K 3m49s\n292800K .......... .......... .......... .......... .......... 55% 1.00M 3m49s\n292850K .......... .......... .......... .......... .......... 55% 1.50M 3m49s\n292900K .......... .......... .......... .......... .......... 55% 1.14M 3m48s\n292950K .......... .......... .......... .......... .......... 55% 1.26M 3m48s\n293000K .......... .......... .......... .......... .......... 55% 1.19M 3m48s\n293050K .......... .......... .......... .......... .......... 55% 1.13M 3m48s\n293100K .......... .......... .......... .......... .......... 55% 1.24M 3m48s\n293150K .......... .......... .......... .......... .......... 55% 915K 3m48s\n293200K .......... .......... .......... .......... .......... 55% 1.15M 3m48s\n293250K .......... .......... .......... .......... .......... 55% 1.20M 3m48s\n293300K .......... .......... .......... .......... .......... 55% 1.16M 3m48s\n293350K .......... .......... .......... .......... .......... 55% 1.17M 3m48s\n293400K .......... .......... .......... .......... .......... 55% 1.23M 3m48s\n293450K .......... .......... .......... .......... .......... 55% 1.18M 3m48s\n293500K .......... .......... .......... .......... .......... 55% 1.24M 3m48s\n293550K .......... .......... .......... .......... .......... 55% 899K 3m48s\n293600K .......... .......... .......... .......... .......... 55% 1.14M 3m48s\n293650K .......... .......... .......... .......... .......... 55% 1.22M 3m48s\n293700K .......... .......... .......... .......... .......... 55% 1.19M 3m48s\n293750K .......... .......... .......... .......... .......... 55% 1.22M 3m48s\n293800K .......... .......... .......... .......... .......... 55% 1.18M 3m48s\n293850K .......... .......... .......... .......... .......... 55% 1.12M 3m48s\n293900K .......... .......... .......... .......... .......... 55% 1.27M 3m47s\n293950K .......... .......... .......... .......... .......... 55% 911K 3m47s\n294000K .......... .......... .......... .......... .......... 55% 1.04M 3m47s\n294050K .......... .......... .......... .......... .......... 55% 1.38M 3m47s\n294100K .......... .......... .......... .......... .......... 55% 1.13M 3m47s\n294150K .......... .......... .......... .......... .......... 55% 1.28M 3m47s\n294200K .......... .......... .......... .......... .......... 55% 1.14M 3m47s\n294250K .......... .......... .......... .......... .......... 55% 1.16M 3m47s\n294300K .......... .......... .......... .......... .......... 55% 1.27M 3m47s\n294350K .......... .......... .......... .......... .......... 55% 890K 3m47s\n294400K .......... .......... .......... .......... .......... 55% 1.17M 3m47s\n294450K .......... .......... .......... .......... .......... 55% 1.18M 3m47s\n294500K .......... .......... .......... .......... .......... 55% 1.19M 3m47s\n294550K .......... .......... .......... .......... .......... 55% 1.20M 3m47s\n294600K .......... .......... .......... .......... .......... 55% 1.19M 3m47s\n294650K .......... .......... .......... .......... .......... 55% 1.23M 3m47s\n294700K .......... .......... .......... .......... .......... 55% 1.17M 3m47s\n294750K .......... .......... .......... .......... .......... 55% 885K 3m47s\n294800K .......... .......... .......... .......... .......... 55% 1.26M 3m47s\n294850K .......... .......... .......... .......... .......... 55% 1.18M 3m46s\n294900K .......... .......... .......... .......... .......... 55% 1.11M 3m46s\n294950K .......... .......... .......... .......... .......... 55% 1.28M 3m46s\n295000K .......... .......... .......... .......... .......... 55% 1.19M 3m46s\n295050K .......... .......... .......... .......... .......... 55% 1.17M 3m46s\n295100K .......... .......... .......... .......... .......... 55% 1.19M 3m46s\n295150K .......... .......... .......... .......... .......... 55% 925K 3m46s\n295200K .......... .......... .......... .......... .......... 55% 1.16M 3m46s\n295250K .......... .......... .......... .......... .......... 55% 1.13M 3m46s\n295300K .......... .......... .......... .......... .......... 55% 1.14M 3m46s\n295350K .......... .......... .......... .......... .......... 55% 1.32M 3m46s\n295400K .......... .......... .......... .......... .......... 55% 1.17M 3m46s\n295450K .......... .......... .......... .......... .......... 55% 1.17M 3m46s\n295500K .......... .......... .......... .......... .......... 55% 1.19M 3m46s\n295550K .......... .......... .......... .......... .......... 55% 683K 3m46s\n295600K .......... .......... .......... .......... .......... 55% 1.77M 3m46s\n295650K .......... .......... .......... .......... .......... 55% 1.27M 3m46s\n295700K .......... .......... .......... .......... .......... 55% 1.18M 3m46s\n295750K .......... .......... .......... .......... .......... 55% 1.17M 3m46s\n295800K .......... .......... .......... .......... .......... 55% 1.26M 3m45s\n295850K .......... .......... .......... .......... .......... 55% 1.20M 3m45s\n295900K .......... .......... .......... .......... .......... 55% 1.13M 3m45s\n295950K .......... .......... .......... .......... .......... 55% 944K 3m45s\n296000K .......... .......... .......... .......... .......... 55% 1.22M 3m45s\n296050K .......... .......... .......... .......... .......... 55% 1.19M 3m45s\n296100K .......... .......... .......... .......... .......... 55% 1.18M 3m45s\n296150K .......... .......... .......... .......... .......... 55% 1.21M 3m45s\n296200K .......... .......... .......... .......... .......... 55% 1.15M 3m45s\n296250K .......... .......... .......... .......... .......... 55% 1.22M 3m45s\n296300K .......... .......... .......... .......... .......... 55% 1.20M 3m45s\n296350K .......... .......... .......... .......... .......... 55% 882K 3m45s\n296400K .......... .......... .......... .......... .......... 55% 1.20M 3m45s\n296450K .......... .......... .......... .......... .......... 55% 1.13M 3m45s\n296500K .......... .......... .......... .......... .......... 55% 1.22M 3m45s\n296550K .......... .......... .......... .......... .......... 55% 1.17M 3m45s\n296600K .......... .......... .......... .......... .......... 55% 1.22M 3m45s\n296650K .......... .......... .......... .......... .......... 55% 1.14M 3m45s\n296700K .......... .......... .......... .......... .......... 55% 1.21M 3m45s\n296750K .......... .......... .......... .......... .......... 55% 837K 3m45s\n296800K .......... .......... .......... .......... .......... 55% 1.39M 3m44s\n296850K .......... .......... .......... .......... .......... 55% 1.17M 3m44s\n296900K .......... .......... .......... .......... .......... 55% 1.20M 3m44s\n296950K .......... .......... .......... .......... .......... 55% 1.12M 3m44s\n297000K .......... .......... .......... .......... .......... 55% 1.26M 3m44s\n297050K .......... .......... .......... .......... .......... 55% 1.19M 3m44s\n297100K .......... .......... .......... .......... .......... 55% 1.17M 3m44s\n297150K .......... .......... .......... .......... .......... 55% 921K 3m44s\n297200K .......... .......... .......... .......... .......... 55% 1.21M 3m44s\n297250K .......... .......... .......... .......... .......... 55% 1.18M 3m44s\n297300K .......... .......... .......... .......... .......... 55% 1.17M 3m44s\n297350K .......... .......... .......... .......... .......... 55% 1.05M 3m44s\n297400K .......... .......... .......... .......... .......... 55% 1.31M 3m44s\n297450K .......... .......... .......... .......... .......... 55% 1.21M 3m44s\n297500K .......... .......... .......... .......... .......... 55% 1.20M 3m44s\n297550K .......... .......... .......... .......... .......... 55% 906K 3m44s\n297600K .......... .......... .......... .......... .......... 55% 1.20M 3m44s\n297650K .......... .......... .......... .......... .......... 55% 1.18M 3m44s\n297700K .......... .......... .......... .......... .......... 55% 1.18M 3m44s\n297750K .......... .......... .......... .......... .......... 55% 1.14M 3m43s\n297800K .......... .......... .......... .......... .......... 56% 1.24M 3m43s\n297850K .......... .......... .......... .......... .......... 56% 1.14M 3m43s\n297900K .......... .......... .......... .......... .......... 56% 1.22M 3m43s\n297950K .......... .......... .......... .......... .......... 56% 920K 3m43s\n298000K .......... .......... .......... .......... .......... 56% 1.24M 3m43s\n298050K .......... .......... .......... .......... .......... 56% 1.12M 3m43s\n298100K .......... .......... .......... .......... .......... 56% 1.25M 3m43s\n298150K .......... .......... .......... .......... .......... 56% 1.17M 3m43s\n298200K .......... .......... .......... .......... .......... 56% 1.16M 3m43s\n298250K .......... .......... .......... .......... .......... 56% 1.25M 3m43s\n298300K .......... .......... .......... .......... .......... 56% 196K 3m43s\n298350K .......... .......... .......... .......... .......... 56% 45.2M 3m43s\n298400K .......... .......... .......... .......... .......... 56% 78.2M 3m43s\n298450K .......... .......... .......... .......... .......... 56% 122M 3m43s\n298500K .......... .......... .......... .......... .......... 56% 125M 3m43s\n298550K .......... .......... .......... .......... .......... 56% 1.42M 3m43s\n298600K .......... .......... .......... .......... .......... 56% 1.11M 3m43s\n298650K .......... .......... .......... .......... .......... 56% 1.23M 3m43s\n298700K .......... .......... .......... .......... .......... 56% 918K 3m43s\n298750K .......... .......... .......... .......... .......... 56% 1.10M 3m42s\n298800K .......... .......... .......... .......... .......... 56% 1.21M 3m42s\n298850K .......... .......... .......... .......... .......... 56% 1.08M 3m42s\n298900K .......... .......... .......... .......... .......... 56% 1.29M 3m42s\n298950K .......... .......... .......... .......... .......... 56% 1.20M 3m42s\n299000K .......... .......... .......... .......... .......... 56% 1.24M 3m42s\n299050K .......... .......... .......... .......... .......... 56% 1.20M 3m42s\n299100K .......... .......... .......... .......... .......... 56% 1.20M 3m42s\n299150K .......... .......... .......... .......... .......... 56% 877K 3m42s\n299200K .......... .......... .......... .......... .......... 56% 1.23M 3m42s\n299250K .......... .......... .......... .......... .......... 56% 1.14M 3m42s\n299300K .......... .......... .......... .......... .......... 56% 1.24M 3m42s\n299350K .......... .......... .......... .......... .......... 56% 1.21M 3m42s\n299400K .......... .......... .......... .......... .......... 56% 1.08M 3m42s\n299450K .......... .......... .......... .......... .......... 56% 1.19M 3m42s\n299500K .......... .......... .......... .......... .......... 56% 1.33M 3m42s\n299550K .......... .......... .......... .......... .......... 56% 903K 3m42s\n299600K .......... .......... .......... .......... .......... 56% 1.17M 3m42s\n299650K .......... .......... .......... .......... .......... 56% 1.20M 3m42s\n299700K .......... .......... .......... .......... .......... 56% 1.17M 3m41s\n299750K .......... .......... .......... .......... .......... 56% 1.18M 3m41s\n299800K .......... .......... .......... .......... .......... 56% 1.21M 3m41s\n299850K .......... .......... .......... .......... .......... 56% 1.18M 3m41s\n299900K .......... .......... .......... .......... .......... 56% 1.13M 3m41s\n299950K .......... .......... .......... .......... .......... 56% 962K 3m41s\n300000K .......... .......... .......... .......... .......... 56% 1.16M 3m41s\n300050K .......... .......... .......... .......... .......... 56% 1.23M 3m41s\n300100K .......... .......... .......... .......... .......... 56% 1.18M 3m41s\n300150K .......... .......... .......... .......... .......... 56% 1.09M 3m41s\n300200K .......... .......... .......... .......... .......... 56% 1.20M 3m41s\n300250K .......... .......... .......... .......... .......... 56% 1.25M 3m41s\n300300K .......... .......... .......... .......... .......... 56% 1.18M 3m41s\n300350K .......... .......... .......... .......... .......... 56% 959K 3m41s\n300400K .......... .......... .......... .......... .......... 56% 1.16M 3m41s\n300450K .......... .......... .......... .......... .......... 56% 1.17M 3m41s\n300500K .......... .......... .......... .......... .......... 56% 1.21M 3m41s\n300550K .......... .......... .......... .......... .......... 56% 1.15M 3m41s\n300600K .......... .......... .......... .......... .......... 56% 1.22M 3m41s\n300650K .......... .......... .......... .......... .......... 56% 1.19M 3m41s\n300700K .......... .......... .......... .......... .......... 56% 1.19M 3m40s\n300750K .......... .......... .......... .......... .......... 56% 871K 3m40s\n300800K .......... .......... .......... .......... .......... 56% 204K 3m41s\n300850K .......... .......... .......... .......... .......... 56% 447M 3m40s\n300900K .......... .......... .......... .......... .......... 56% 107M 3m40s\n300950K .......... .......... .......... .......... .......... 56% 122M 3m40s\n301000K .......... .......... .......... .......... .......... 56% 480M 3m40s\n301050K .......... .......... .......... .......... .......... 56% 201M 3m40s\n301100K .......... .......... .......... .......... .......... 56% 715K 3m40s\n301150K .......... .......... .......... .......... .......... 56% 916K 3m40s\n301200K .......... .......... .......... .......... .......... 56% 1.14M 3m40s\n301250K .......... .......... .......... .......... .......... 56% 1.23M 3m40s\n301300K .......... .......... .......... .......... .......... 56% 1.21M 3m40s\n301350K .......... .......... .......... .......... .......... 56% 1.16M 3m40s\n301400K .......... .......... .......... .......... .......... 56% 1.18M 3m40s\n301450K .......... .......... .......... .......... .......... 56% 1.19M 3m40s\n301500K .......... .......... .......... .......... .......... 56% 1.23M 3m40s\n301550K .......... .......... .......... .......... .......... 56% 912K 3m40s\n301600K .......... .......... .......... .......... .......... 56% 1.19M 3m40s\n301650K .......... .......... .......... .......... .......... 56% 1.19M 3m40s\n301700K .......... .......... .......... .......... .......... 56% 1.10M 3m39s\n301750K .......... .......... .......... .......... .......... 56% 1.25M 3m39s\n301800K .......... .......... .......... .......... .......... 56% 1.19M 3m39s\n301850K .......... .......... .......... .......... .......... 56% 1.16M 3m39s\n301900K .......... .......... .......... .......... .......... 56% 1.18M 3m39s\n301950K .......... .......... .......... .......... .......... 56% 913K 3m39s\n302000K .......... .......... .......... .......... .......... 56% 1.19M 3m39s\n302050K .......... .......... .......... .......... .......... 56% 1.16M 3m39s\n302100K .......... .......... .......... .......... .......... 56% 1.21M 3m39s\n302150K .......... .......... .......... .......... .......... 56% 1.17M 3m39s\n302200K .......... .......... .......... .......... .......... 56% 1.17M 3m39s\n302250K .......... .......... .......... .......... .......... 56% 1.21M 3m39s\n302300K .......... .......... .......... .......... .......... 56% 1.17M 3m39s\n302350K .......... .......... .......... .......... .......... 56% 935K 3m39s\n302400K .......... .......... .......... .......... .......... 56% 1.18M 3m39s\n302450K .......... .......... .......... .......... .......... 56% 1.19M 3m39s\n302500K .......... .......... .......... .......... .......... 56% 1.22M 3m39s\n302550K .......... .......... .......... .......... .......... 56% 1.16M 3m39s\n302600K .......... .......... .......... .......... .......... 56% 1.19M 3m39s\n302650K .......... .......... .......... .......... .......... 56% 1.20M 3m38s\n302700K .......... .......... .......... .......... .......... 56% 1.18M 3m38s\n302750K .......... .......... .......... .......... .......... 56% 882K 3m38s\n302800K .......... .......... .......... .......... .......... 56% 1.12M 3m38s\n302850K .......... .......... .......... .......... .......... 56% 1.28M 3m38s\n302900K .......... .......... .......... .......... .......... 56% 1.21M 3m38s\n302950K .......... .......... .......... .......... .......... 56% 1.20M 3m38s\n303000K .......... .......... .......... .......... .......... 56% 1.17M 3m38s\n303050K .......... .......... .......... .......... .......... 56% 1.19M 3m38s\n303100K .......... .......... .......... .......... .......... 56% 1023K 3m38s\n303150K .......... .......... .......... .......... .......... 57% 17.8K 3m40s\n303200K .......... .......... .......... .......... .......... 57% 1.11M 3m40s\n303250K .......... .......... .......... .......... .......... 57% 1.25M 3m40s\n303300K .......... .......... .......... .......... .......... 57% 1.19M 3m40s\n303350K .......... .......... .......... .......... .......... 57% 1.16M 3m40s\n303400K .......... .......... .......... .......... .......... 57% 1.20M 3m40s\n303450K .......... .......... .......... .......... .......... 57% 1.21M 3m40s\n303500K .......... .......... .......... .......... .......... 57% 1.17M 3m40s\n303550K .......... .......... .......... .......... .......... 57% 907K 3m40s\n303600K .......... .......... .......... .......... .......... 57% 1.17M 3m40s\n303650K .......... .......... .......... .......... .......... 57% 1.19M 3m40s\n303700K .......... .......... .......... .......... .......... 57% 1.20M 3m39s\n303750K .......... .......... .......... .......... .......... 57% 649K 3m39s\n303800K .......... .......... .......... .......... .......... 57% 4.26M 3m39s\n303850K .......... .......... .......... .......... .......... 57% 1.35M 3m39s\n303900K .......... .......... .......... .......... .......... 57% 1.17M 3m39s\n303950K .......... .......... .......... .......... .......... 57% 913K 3m39s\n304000K .......... .......... .......... .......... .......... 57% 1.20M 3m39s\n304050K .......... .......... .......... .......... .......... 57% 1.18M 3m39s\n304100K .......... .......... .......... .......... .......... 57% 1.21M 3m39s\n304150K .......... .......... .......... .......... .......... 57% 1.14M 3m39s\n304200K .......... .......... .......... .......... .......... 57% 1.21M 3m39s\n304250K .......... .......... .......... .......... .......... 57% 1.17M 3m39s\n304300K .......... .......... .......... .......... .......... 57% 1.21M 3m39s\n304350K .......... .......... .......... .......... .......... 57% 933K 3m39s\n304400K .......... .......... .......... .......... .......... 57% 1.15M 3m39s\n304450K .......... .......... .......... .......... .......... 57% 1.14M 3m39s\n304500K .......... .......... .......... .......... .......... 57% 1.25M 3m39s\n304550K .......... .......... .......... .......... .......... 57% 1.18M 3m39s\n304600K .......... .......... .......... .......... .......... 57% 1.22M 3m39s\n304650K .......... .......... .......... .......... .......... 57% 1.18M 3m38s\n304700K .......... .......... .......... .......... .......... 57% 1.19M 3m38s\n304750K .......... .......... .......... .......... .......... 57% 888K 3m38s\n304800K .......... .......... .......... .......... .......... 57% 1.21M 3m38s\n304850K .......... .......... .......... .......... .......... 57% 1.18M 3m38s\n304900K .......... .......... .......... .......... .......... 57% 1.21M 3m38s\n304950K .......... .......... .......... .......... .......... 57% 1.17M 3m38s\n305000K .......... .......... .......... .......... .......... 57% 1.23M 3m38s\n305050K .......... .......... .......... .......... .......... 57% 1.15M 3m38s\n305100K .......... .......... .......... .......... .......... 57% 184K 3m38s\n305150K .......... .......... .......... .......... .......... 57% 36.4M 3m38s\n305200K .......... .......... .......... .......... .......... 57% 70.6M 3m38s\n305250K .......... .......... .......... .......... .......... 57% 23.8M 3m38s\n305300K .......... .......... .......... .......... .......... 57% 70.5M 3m38s\n305350K .......... .......... .......... .......... .......... 57% 125M 3m38s\n305400K .......... .......... .......... .......... .......... 57% 870K 3m38s\n305450K .......... .......... .......... .......... .......... 57% 1.29M 3m38s\n305500K .......... .......... .......... .......... .......... 57% 1.18M 3m38s\n305550K .......... .......... .......... .......... .......... 57% 937K 3m38s\n305600K .......... .......... .......... .......... .......... 57% 1.21M 3m38s\n305650K .......... .......... .......... .......... .......... 57% 1.15M 3m37s\n305700K .......... .......... .......... .......... .......... 57% 1.20M 3m37s\n305750K .......... .......... .......... .......... .......... 57% 1.07M 3m37s\n305800K .......... .......... .......... .......... .......... 57% 1.25M 3m37s\n305850K .......... .......... .......... .......... .......... 57% 1.23M 3m37s\n305900K .......... .......... .......... .......... .......... 57% 1.24M 3m37s\n305950K .......... .......... .......... .......... .......... 57% 888K 3m37s\n306000K .......... .......... .......... .......... .......... 57% 1.20M 3m37s\n306050K .......... .......... .......... .......... .......... 57% 1.16M 3m37s\n306100K .......... .......... .......... .......... .......... 57% 1.22M 3m37s\n306150K .......... .......... .......... .......... .......... 57% 1.20M 3m37s\n306200K .......... .......... .......... .......... .......... 57% 1.18M 3m37s\n306250K .......... .......... .......... .......... .......... 57% 1.20M 3m37s\n306300K .......... .......... .......... .......... .......... 57% 1.16M 3m37s\n306350K .......... .......... .......... .......... .......... 57% 919K 3m37s\n306400K .......... .......... .......... .......... .......... 57% 1.20M 3m37s\n306450K .......... .......... .......... .......... .......... 57% 1.16M 3m37s\n306500K .......... .......... .......... .......... .......... 57% 1.24M 3m37s\n306550K .......... .......... .......... .......... .......... 57% 1.20M 3m37s\n306600K .......... .......... .......... .......... .......... 57% 1.17M 3m36s\n306650K .......... .......... .......... .......... .......... 57% 1.19M 3m36s\n306700K .......... .......... .......... .......... .......... 57% 967K 3m36s\n306750K .......... .......... .......... .......... .......... 57% 1.05M 3m36s\n306800K .......... .......... .......... .......... .......... 57% 1.23M 3m36s\n306850K .......... .......... .......... .......... .......... 57% 1.13M 3m36s\n306900K .......... .......... .......... .......... .......... 57% 1.23M 3m36s\n306950K .......... .......... .......... .......... .......... 57% 1.20M 3m36s\n307000K .......... .......... .......... .......... .......... 57% 1.18M 3m36s\n307050K .......... .......... .......... .......... .......... 57% 1.23M 3m36s\n307100K .......... .......... .......... .......... .......... 57% 1.10M 3m36s\n307150K .......... .......... .......... .......... .......... 57% 954K 3m36s\n307200K .......... .......... .......... .......... .......... 57% 1.17M 3m36s\n307250K .......... .......... .......... .......... .......... 57% 1.20M 3m36s\n307300K .......... .......... .......... .......... .......... 57% 1.19M 3m36s\n307350K .......... .......... .......... .......... .......... 57% 1.18M 3m36s\n307400K .......... .......... .......... .......... .......... 57% 1.21M 3m36s\n307450K .......... .......... .......... .......... .......... 57% 1.18M 3m36s\n307500K .......... .......... .......... .......... .......... 57% 1.16M 3m36s\n307550K .......... .......... .......... .......... .......... 57% 906K 3m36s\n307600K .......... .......... .......... .......... .......... 57% 197K 3m36s\n307650K .......... .......... .......... .......... .......... 57% 359M 3m36s\n307700K .......... .......... .......... .......... .......... 57% 447M 3m35s\n307750K .......... .......... .......... .......... .......... 57% 65.2M 3m35s\n307800K .......... .......... .......... .......... .......... 57% 411M 3m35s\n307850K .......... .......... .......... .......... .......... 57% 492M 3m35s\n307900K .......... .......... .......... .......... .......... 57% 738K 3m35s\n307950K .......... .......... .......... .......... .......... 57% 927K 3m35s\n308000K .......... .......... .......... .......... .......... 57% 1.16M 3m35s\n308050K .......... .......... .......... .......... .......... 57% 1.18M 3m35s\n308100K .......... .......... .......... .......... .......... 57% 1.08M 3m35s\n308150K .......... .......... .......... .......... .......... 57% 1.32M 3m35s\n308200K .......... .......... .......... .......... .......... 57% 1.18M 3m35s\n308250K .......... .......... .......... .......... .......... 57% 1.22M 3m35s\n308300K .......... .......... .......... .......... .......... 57% 1.14M 3m35s\n308350K .......... .......... .......... .......... .......... 57% 924K 3m35s\n308400K .......... .......... .......... .......... .......... 57% 1.23M 3m35s\n308450K .......... .......... .......... .......... .......... 58% 1.17M 3m35s\n308500K .......... .......... .......... .......... .......... 58% 1.18M 3m35s\n308550K .......... .......... .......... .......... .......... 58% 1.19M 3m34s\n308600K .......... .......... .......... .......... .......... 58% 1.19M 3m34s\n308650K .......... .......... .......... .......... .......... 58% 1.21M 3m34s\n308700K .......... .......... .......... .......... .......... 58% 1.19M 3m34s\n308750K .......... .......... .......... .......... .......... 58% 918K 3m34s\n308800K .......... .......... .......... .......... .......... 58% 1.14M 3m34s\n308850K .......... .......... .......... .......... .......... 58% 1.25M 3m34s\n308900K .......... .......... .......... .......... .......... 58% 1.19M 3m34s\n308950K .......... .......... .......... .......... .......... 58% 1.16M 3m34s\n309000K .......... .......... .......... .......... .......... 58% 1.19M 3m34s\n309050K .......... .......... .......... .......... .......... 58% 1.20M 3m34s\n309100K .......... .......... .......... .......... .......... 58% 1.20M 3m34s\n309150K .......... .......... .......... .......... .......... 58% 873K 3m34s\n309200K .......... .......... .......... .......... .......... 58% 1.22M 3m34s\n309250K .......... .......... .......... .......... .......... 58% 1.15M 3m34s\n309300K .......... .......... .......... .......... .......... 58% 1.21M 3m34s\n309350K .......... .......... .......... .......... .......... 58% 1.24M 3m34s\n309400K .......... .......... .......... .......... .......... 58% 1.15M 3m34s\n309450K .......... .......... .......... .......... .......... 58% 1.19M 3m34s\n309500K .......... .......... .......... .......... .......... 58% 1.20M 3m34s\n309550K .......... .......... .......... .......... .......... 58% 935K 3m33s\n309600K .......... .......... .......... .......... .......... 58% 1.17M 3m33s\n309650K .......... .......... .......... .......... .......... 58% 1.14M 3m33s\n309700K .......... .......... .......... .......... .......... 58% 1.22M 3m33s\n309750K .......... .......... .......... .......... .......... 58% 1.24M 3m33s\n309800K .......... .......... .......... .......... .......... 58% 1.19M 3m33s\n309850K .......... .......... .......... .......... .......... 58% 1.16M 3m33s\n309900K .......... .......... .......... .......... .......... 58% 1.20M 3m33s\n309950K .......... .......... .......... .......... .......... 58% 877K 3m33s\n310000K .......... .......... .......... .......... .......... 58% 1.26M 3m33s\n310050K .......... .......... .......... .......... .......... 58% 1.17M 3m33s\n310100K .......... .......... .......... .......... .......... 58% 1.17M 3m33s\n310150K .......... .......... .......... .......... .......... 58% 1.21M 3m33s\n310200K .......... .......... .......... .......... .......... 58% 1.18M 3m33s\n310250K .......... .......... .......... .......... .......... 58% 1.16M 3m33s\n310300K .......... .......... .......... .......... .......... 58% 1.21M 3m33s\n310350K .......... .......... .......... .......... .......... 58% 917K 3m33s\n310400K .......... .......... .......... .......... .......... 58% 1.20M 3m33s\n310450K .......... .......... .......... .......... .......... 58% 1.20M 3m33s\n310500K .......... .......... .......... .......... .......... 58% 1.17M 3m32s\n310550K .......... .......... .......... .......... .......... 58% 1.17M 3m32s\n310600K .......... .......... .......... .......... .......... 58% 1.18M 3m32s\n310650K .......... .......... .......... .......... .......... 58% 1.20M 3m32s\n310700K .......... .......... .......... .......... .......... 58% 1.17M 3m32s\n310750K .......... .......... .......... .......... .......... 58% 957K 3m32s\n310800K .......... .......... .......... .......... .......... 58% 1.18M 3m32s\n310850K .......... .......... .......... .......... .......... 58% 1.18M 3m32s\n310900K .......... .......... .......... .......... .......... 58% 1.17M 3m32s\n310950K .......... .......... .......... .......... .......... 58% 1.16M 3m32s\n311000K .......... .......... .......... .......... .......... 58% 1.26M 3m32s\n311050K .......... .......... .......... .......... .......... 58% 1.17M 3m32s\n311100K .......... .......... .......... .......... .......... 58% 1.16M 3m32s\n311150K .......... .......... .......... .......... .......... 58% 920K 3m32s\n311200K .......... .......... .......... .......... .......... 58% 1.16M 3m32s\n311250K .......... .......... .......... .......... .......... 58% 1.24M 3m32s\n311300K .......... .......... .......... .......... .......... 58% 1.15M 3m32s\n311350K .......... .......... .......... .......... .......... 58% 1.22M 3m32s\n311400K .......... .......... .......... .......... .......... 58% 1.16M 3m32s\n311450K .......... .......... .......... .......... .......... 58% 1.15M 3m31s\n311500K .......... .......... .......... .......... .......... 58% 1.20M 3m31s\n311550K .......... .......... .......... .......... .......... 58% 941K 3m31s\n311600K .......... .......... .......... .......... .......... 58% 1.18M 3m31s\n311650K .......... .......... .......... .......... .......... 58% 1.21M 3m31s\n311700K .......... .......... .......... .......... .......... 58% 1.18M 3m31s\n311750K .......... .......... .......... .......... .......... 58% 1.18M 3m31s\n311800K .......... .......... .......... .......... .......... 58% 1.18M 3m31s\n311850K .......... .......... .......... .......... .......... 58% 1.18M 3m31s\n311900K .......... .......... .......... .......... .......... 58% 1.22M 3m31s\n311950K .......... .......... .......... .......... .......... 58% 888K 3m31s\n312000K .......... .......... .......... .......... .......... 58% 1.17M 3m31s\n312050K .......... .......... .......... .......... .......... 58% 1.17M 3m31s\n312100K .......... .......... .......... .......... .......... 58% 1.24M 3m31s\n312150K .......... .......... .......... .......... .......... 58% 1.12M 3m31s\n312200K .......... .......... .......... .......... .......... 58% 1.27M 3m31s\n312250K .......... .......... .......... .......... .......... 58% 1.22M 3m31s\n312300K .......... .......... .......... .......... .......... 58% 1.07M 3m31s\n312350K .......... .......... .......... .......... .......... 58% 969K 3m31s\n312400K .......... .......... .......... .......... .......... 58% 1.16M 3m31s\n312450K .......... .......... .......... .......... .......... 58% 1.19M 3m30s\n312500K .......... .......... .......... .......... .......... 58% 1.23M 3m30s\n312550K .......... .......... .......... .......... .......... 58% 1.15M 3m30s\n312600K .......... .......... .......... .......... .......... 58% 1.21M 3m30s\n312650K .......... .......... .......... .......... .......... 58% 1.18M 3m30s\n312700K .......... .......... .......... .......... .......... 58% 1.19M 3m30s\n312750K .......... .......... .......... .......... .......... 58% 841K 3m30s\n312800K .......... .......... .......... .......... .......... 58% 1.35M 3m30s\n312850K .......... .......... .......... .......... .......... 58% 1.18M 3m30s\n312900K .......... .......... .......... .......... .......... 58% 1.19M 3m30s\n312950K .......... .......... .......... .......... .......... 58% 1.19M 3m30s\n313000K .......... .......... .......... .......... .......... 58% 1.16M 3m30s\n313050K .......... .......... .......... .......... .......... 58% 1.18M 3m30s\n313100K .......... .......... .......... .......... .......... 58% 1.21M 3m30s\n313150K .......... .......... .......... .......... .......... 58% 883K 3m30s\n313200K .......... .......... .......... .......... .......... 58% 1.21M 3m30s\n313250K .......... .......... .......... .......... .......... 58% 1.12M 3m30s\n313300K .......... .......... .......... .......... .......... 58% 1.26M 3m30s\n313350K .......... .......... .......... .......... .......... 58% 1.22M 3m30s\n313400K .......... .......... .......... .......... .......... 58% 1.10M 3m29s\n313450K .......... .......... .......... .......... .......... 58% 1.31M 3m29s\n313500K .......... .......... .......... .......... .......... 58% 1.17M 3m29s\n313550K .......... .......... .......... .......... .......... 58% 916K 3m29s\n313600K .......... .......... .......... .......... .......... 58% 1.20M 3m29s\n313650K .......... .......... .......... .......... .......... 58% 1.18M 3m29s\n313700K .......... .......... .......... .......... .......... 58% 1.15M 3m29s\n313750K .......... .......... .......... .......... .......... 59% 1.26M 3m29s\n313800K .......... .......... .......... .......... .......... 59% 1.15M 3m29s\n313850K .......... .......... .......... .......... .......... 59% 1.21M 3m29s\n313900K .......... .......... .......... .......... .......... 59% 1.21M 3m29s\n313950K .......... .......... .......... .......... .......... 59% 887K 3m29s\n314000K .......... .......... .......... .......... .......... 59% 1.19M 3m29s\n314050K .......... .......... .......... .......... .......... 59% 1.23M 3m29s\n314100K .......... .......... .......... .......... .......... 59% 1.18M 3m29s\n314150K .......... .......... .......... .......... .......... 59% 1.17M 3m29s\n314200K .......... .......... .......... .......... .......... 59% 1.21M 3m29s\n314250K .......... .......... .......... .......... .......... 59% 1.18M 3m29s\n314300K .......... .......... .......... .......... .......... 59% 1.18M 3m29s\n314350K .......... .......... .......... .......... .......... 59% 900K 3m29s\n314400K .......... .......... .......... .......... .......... 59% 1.20M 3m28s\n314450K .......... .......... .......... .......... .......... 59% 1.17M 3m28s\n314500K .......... .......... .......... .......... .......... 59% 1.17M 3m28s\n314550K .......... .......... .......... .......... .......... 59% 1.21M 3m28s\n314600K .......... .......... .......... .......... .......... 59% 1.20M 3m28s\n314650K .......... .......... .......... .......... .......... 59% 1.14M 3m28s\n314700K .......... .......... .......... .......... .......... 59% 1.24M 3m28s\n314750K .......... .......... .......... .......... .......... 59% 908K 3m28s\n314800K .......... .......... .......... .......... .......... 59% 1.19M 3m28s\n314850K .......... .......... .......... .......... .......... 59% 1.19M 3m28s\n314900K .......... .......... .......... .......... .......... 59% 1.16M 3m28s\n314950K .......... .......... .......... .......... .......... 59% 196K 3m28s\n315000K .......... .......... .......... .......... .......... 59% 393M 3m28s\n315050K .......... .......... .......... .......... .......... 59% 542M 3m28s\n315100K .......... .......... .......... .......... .......... 59% 16.8M 3m28s\n315150K .......... .......... .......... .......... .......... 59% 286M 3m28s\n315200K .......... .......... .......... .......... .......... 59% 1.49M 3m28s\n315250K .......... .......... .......... .......... .......... 59% 1.20M 3m28s\n315300K .......... .......... .......... .......... .......... 59% 1.12M 3m28s\n315350K .......... .......... .......... .......... .......... 59% 1.31M 3m27s\n315400K .......... .......... .......... .......... .......... 59% 1.20M 3m27s\n315450K .......... .......... .......... .......... .......... 59% 1.15M 3m27s\n315500K .......... .......... .......... .......... .......... 59% 1.21M 3m27s\n315550K .......... .......... .......... .......... .......... 59% 890K 3m27s\n315600K .......... .......... .......... .......... .......... 59% 1.13M 3m27s\n315650K .......... .......... .......... .......... .......... 59% 1.22M 3m27s\n315700K .......... .......... .......... .......... .......... 59% 1.24M 3m27s\n315750K .......... .......... .......... .......... .......... 59% 1.19M 3m27s\n315800K .......... .......... .......... .......... .......... 59% 1.15M 3m27s\n315850K .......... .......... .......... .......... .......... 59% 1.22M 3m27s\n315900K .......... .......... .......... .......... .......... 59% 1.18M 3m27s\n315950K .......... .......... .......... .......... .......... 59% 933K 3m27s\n316000K .......... .......... .......... .......... .......... 59% 1.19M 3m27s\n316050K .......... .......... .......... .......... .......... 59% 1.09M 3m27s\n316100K .......... .......... .......... .......... .......... 59% 1.28M 3m27s\n316150K .......... .......... .......... .......... .......... 59% 1.14M 3m27s\n316200K .......... .......... .......... .......... .......... 59% 1.23M 3m27s\n316250K .......... .......... .......... .......... .......... 59% 1.23M 3m27s\n316300K .......... .......... .......... .......... .......... 59% 1.10M 3m27s\n316350K .......... .......... .......... .......... .......... 59% 956K 3m26s\n316400K .......... .......... .......... .......... .......... 59% 1.14M 3m26s\n316450K .......... .......... .......... .......... .......... 59% 1.17M 3m26s\n316500K .......... .......... .......... .......... .......... 59% 1.20M 3m26s\n316550K .......... .......... .......... .......... .......... 59% 1.20M 3m26s\n316600K .......... .......... .......... .......... .......... 59% 1.16M 3m26s\n316650K .......... .......... .......... .......... .......... 59% 1.24M 3m26s\n316700K .......... .......... .......... .......... .......... 59% 1.13M 3m26s\n316750K .......... .......... .......... .......... .......... 59% 936K 3m26s\n316800K .......... .......... .......... .......... .......... 59% 1.19M 3m26s\n316850K .......... .......... .......... .......... .......... 59% 1.19M 3m26s\n316900K .......... .......... .......... .......... .......... 59% 1.21M 3m26s\n316950K .......... .......... .......... .......... .......... 59% 1.19M 3m26s\n317000K .......... .......... .......... .......... .......... 59% 1.16M 3m26s\n317050K .......... .......... .......... .......... .......... 59% 1.15M 3m26s\n317100K .......... .......... .......... .......... .......... 59% 1.24M 3m26s\n317150K .......... .......... .......... .......... .......... 59% 902K 3m26s\n317200K .......... .......... .......... .......... .......... 59% 192K 3m26s\n317250K .......... .......... .......... .......... .......... 59% 80.7M 3m26s\n317300K .......... .......... .......... .......... .......... 59% 130M 3m26s\n317350K .......... .......... .......... .......... .......... 59% 1.48M 3m26s\n317400K .......... .......... .......... .......... .......... 59% 160M 3m25s\n317450K .......... .......... .......... .......... .......... 59% 92.4M 3m25s\n317500K .......... .......... .......... .......... .......... 59% 868K 3m25s\n317550K .......... .......... .......... .......... .......... 59% 864K 3m25s\n317600K .......... .......... .......... .......... .......... 59% 1.20M 3m25s\n317650K .......... .......... .......... .......... .......... 59% 1.20M 3m25s\n317700K .......... .......... .......... .......... .......... 59% 1.18M 3m25s\n317750K .......... .......... .......... .......... .......... 59% 1.18M 3m25s\n317800K .......... .......... .......... .......... .......... 59% 1.19M 3m25s\n317850K .......... .......... .......... .......... .......... 59% 1.22M 3m25s\n317900K .......... .......... .......... .......... .......... 59% 1.18M 3m25s\n317950K .......... .......... .......... .......... .......... 59% 898K 3m25s\n318000K .......... .......... .......... .......... .......... 59% 1.17M 3m25s\n318050K .......... .......... .......... .......... .......... 59% 1.23M 3m25s\n318100K .......... .......... .......... .......... .......... 59% 1.19M 3m25s\n318150K .......... .......... .......... .......... .......... 59% 1.08M 3m25s\n318200K .......... .......... .......... .......... .......... 59% 204K 3m25s\n318250K .......... .......... .......... .......... .......... 59% 108M 3m25s\n318300K .......... .......... .......... .......... .......... 59% 34.2M 3m25s\n318350K .......... .......... .......... .......... .......... 59% 9.95M 3m25s\n318400K .......... .......... .......... .......... .......... 59% 32.1M 3m24s\n318450K .......... .......... .......... .......... .......... 59% 13.6M 3m24s\n318500K .......... .......... .......... .......... .......... 59% 856K 3m24s\n318550K .......... .......... .......... .......... .......... 59% 1.21M 3m24s\n318600K .......... .......... .......... .......... .......... 59% 1.18M 3m24s\n318650K .......... .......... .......... .......... .......... 59% 1.17M 3m24s\n318700K .......... .......... .......... .......... .......... 59% 1.13M 3m24s\n318750K .......... .......... .......... .......... .......... 59% 938K 3m24s\n318800K .......... .......... .......... .......... .......... 59% 1.15M 3m24s\n318850K .......... .......... .......... .......... .......... 59% 1.19M 3m24s\n318900K .......... .......... .......... .......... .......... 59% 1.22M 3m24s\n318950K .......... .......... .......... .......... .......... 59% 1.18M 3m24s\n319000K .......... .......... .......... .......... .......... 59% 1.19M 3m24s\n319050K .......... .......... .......... .......... .......... 59% 1.17M 3m24s\n319100K .......... .......... .......... .......... .......... 60% 1.10M 3m24s\n319150K .......... .......... .......... .......... .......... 60% 990K 3m24s\n319200K .......... .......... .......... .......... .......... 60% 1.15M 3m24s\n319250K .......... .......... .......... .......... .......... 60% 1.20M 3m24s\n319300K .......... .......... .......... .......... .......... 60% 1.14M 3m23s\n319350K .......... .......... .......... .......... .......... 60% 1.26M 3m23s\n319400K .......... .......... .......... .......... .......... 60% 1.17M 3m23s\n319450K .......... .......... .......... .......... .......... 60% 1.18M 3m23s\n319500K .......... .......... .......... .......... .......... 60% 1.21M 3m23s\n319550K .......... .......... .......... .......... .......... 60% 198K 3m23s\n319600K .......... .......... .......... .......... .......... 60% 119M 3m23s\n319650K .......... .......... .......... .......... .......... 60% 19.4M 3m23s\n319700K .......... .......... .......... .......... .......... 60% 71.6M 3m23s\n319750K .......... .......... .......... .......... .......... 60% 137M 3m23s\n319800K .......... .......... .......... .......... .......... 60% 1.58M 3m23s\n319850K .......... .......... .......... .......... .......... 60% 1.16M 3m23s\n319900K .......... .......... .......... .......... .......... 60% 1.23M 3m23s\n319950K .......... .......... .......... .......... .......... 60% 919K 3m23s\n320000K .......... .......... .......... .......... .......... 60% 1.16M 3m23s\n320050K .......... .......... .......... .......... .......... 60% 1.18M 3m23s\n320100K .......... .......... .......... .......... .......... 60% 1.19M 3m23s\n320150K .......... .......... .......... .......... .......... 60% 1.21M 3m23s\n320200K .......... .......... .......... .......... .......... 60% 1.17M 3m23s\n320250K .......... .......... .......... .......... .......... 60% 1.18M 3m23s\n320300K .......... .......... .......... .......... .......... 60% 1.19M 3m22s\n320350K .......... .......... .......... .......... .......... 60% 919K 3m22s\n320400K .......... .......... .......... .......... .......... 60% 1.15M 3m22s\n320450K .......... .......... .......... .......... .......... 60% 1.26M 3m22s\n320500K .......... .......... .......... .......... .......... 60% 1.18M 3m22s\n320550K .......... .......... .......... .......... .......... 60% 1.18M 3m22s\n320600K .......... .......... .......... .......... .......... 60% 1.18M 3m22s\n320650K .......... .......... .......... .......... .......... 60% 1.20M 3m22s\n320700K .......... .......... .......... .......... .......... 60% 1.17M 3m22s\n320750K .......... .......... .......... .......... .......... 60% 913K 3m22s\n320800K .......... .......... .......... .......... .......... 60% 1.20M 3m22s\n320850K .......... .......... .......... .......... .......... 60% 1.16M 3m22s\n320900K .......... .......... .......... .......... .......... 60% 1.20M 3m22s\n320950K .......... .......... .......... .......... .......... 60% 1.11M 3m22s\n321000K .......... .......... .......... .......... .......... 60% 1.28M 3m22s\n321050K .......... .......... .......... .......... .......... 60% 1.20M 3m22s\n321100K .......... .......... .......... .......... .......... 60% 1.17M 3m22s\n321150K .......... .......... .......... .......... .......... 60% 922K 3m22s\n321200K .......... .......... .......... .......... .......... 60% 1.09M 3m22s\n321250K .......... .......... .......... .......... .......... 60% 1.27M 3m22s\n321300K .......... .......... .......... .......... .......... 60% 1.09M 3m21s\n321350K .......... .......... .......... .......... .......... 60% 1.31M 3m21s\n321400K .......... .......... .......... .......... .......... 60% 1.19M 3m21s\n321450K .......... .......... .......... .......... .......... 60% 1.19M 3m21s\n321500K .......... .......... .......... .......... .......... 60% 1.18M 3m21s\n321550K .......... .......... .......... .......... .......... 60% 937K 3m21s\n321600K .......... .......... .......... .......... .......... 60% 1.15M 3m21s\n321650K .......... .......... .......... .......... .......... 60% 1.23M 3m21s\n321700K .......... .......... .......... .......... .......... 60% 1.18M 3m21s\n321750K .......... .......... .......... .......... .......... 60% 1.19M 3m21s\n321800K .......... .......... .......... .......... .......... 60% 1.19M 3m21s\n321850K .......... .......... .......... .......... .......... 60% 1.18M 3m21s\n321900K .......... .......... .......... .......... .......... 60% 1.18M 3m21s\n321950K .......... .......... .......... .......... .......... 60% 893K 3m21s\n322000K .......... .......... .......... .......... .......... 60% 1.22M 3m21s\n322050K .......... .......... .......... .......... .......... 60% 1.18M 3m21s\n322100K .......... .......... .......... .......... .......... 60% 1.17M 3m21s\n322150K .......... .......... .......... .......... .......... 60% 1.20M 3m21s\n322200K .......... .......... .......... .......... .......... 60% 1.19M 3m21s\n322250K .......... .......... .......... .......... .......... 60% 1.19M 3m20s\n322300K .......... .......... .......... .......... .......... 60% 1.16M 3m20s\n322350K .......... .......... .......... .......... .......... 60% 946K 3m20s\n322400K .......... .......... .......... .......... .......... 60% 1.18M 3m20s\n322450K .......... .......... .......... .......... .......... 60% 1.15M 3m20s\n322500K .......... .......... .......... .......... .......... 60% 1.10M 3m20s\n322550K .......... .......... .......... .......... .......... 60% 1.33M 3m20s\n322600K .......... .......... .......... .......... .......... 60% 1.18M 3m20s\n322650K .......... .......... .......... .......... .......... 60% 1.22M 3m20s\n322700K .......... .......... .......... .......... .......... 60% 1.18M 3m20s\n322750K .......... .......... .......... .......... .......... 60% 920K 3m20s\n322800K .......... .......... .......... .......... .......... 60% 1.15M 3m20s\n322850K .......... .......... .......... .......... .......... 60% 1.21M 3m20s\n322900K .......... .......... .......... .......... .......... 60% 1.19M 3m20s\n322950K .......... .......... .......... .......... .......... 60% 1.20M 3m20s\n323000K .......... .......... .......... .......... .......... 60% 1.16M 3m20s\n323050K .......... .......... .......... .......... .......... 60% 1.15M 3m20s\n323100K .......... .......... .......... .......... .......... 60% 1.16M 3m20s\n323150K .......... .......... .......... .......... .......... 60% 955K 3m20s\n323200K .......... .......... .......... .......... .......... 60% 1.16M 3m20s\n323250K .......... .......... .......... .......... .......... 60% 1.18M 3m19s\n323300K .......... .......... .......... .......... .......... 60% 1.04M 3m19s\n323350K .......... .......... .......... .......... .......... 60% 1.36M 3m19s\n323400K .......... .......... .......... .......... .......... 60% 1.15M 3m19s\n323450K .......... .......... .......... .......... .......... 60% 1.22M 3m19s\n323500K .......... .......... .......... .......... .......... 60% 1.23M 3m19s\n323550K .......... .......... .......... .......... .......... 60% 916K 3m19s\n323600K .......... .......... .......... .......... .......... 60% 1.18M 3m19s\n323650K .......... .......... .......... .......... .......... 60% 1.22M 3m19s\n323700K .......... .......... .......... .......... .......... 60% 1.18M 3m19s\n323750K .......... .......... .......... .......... .......... 60% 1.19M 3m19s\n323800K .......... .......... .......... .......... .......... 60% 1.19M 3m19s\n323850K .......... .......... .......... .......... .......... 60% 1.18M 3m19s\n323900K .......... .......... .......... .......... .......... 60% 1.18M 3m19s\n323950K .......... .......... .......... .......... .......... 60% 896K 3m19s\n324000K .......... .......... .......... .......... .......... 60% 1.18M 3m19s\n324050K .......... .......... .......... .......... .......... 60% 1.17M 3m19s\n324100K .......... .......... .......... .......... .......... 60% 1.23M 3m19s\n324150K .......... .......... .......... .......... .......... 60% 1.14M 3m19s\n324200K .......... .......... .......... .......... .......... 60% 1.24M 3m19s\n324250K .......... .......... .......... .......... .......... 60% 1.19M 3m18s\n324300K .......... .......... .......... .......... .......... 60% 1.16M 3m18s\n324350K .......... .......... .......... .......... .......... 60% 932K 3m18s\n324400K .......... .......... .......... .......... .......... 61% 1.17M 3m18s\n324450K .......... .......... .......... .......... .......... 61% 1.17M 3m18s\n324500K .......... .......... .......... .......... .......... 61% 1.16M 3m18s\n324550K .......... .......... .......... .......... .......... 61% 1.16M 3m18s\n324600K .......... .......... .......... .......... .......... 61% 1.22M 3m18s\n324650K .......... .......... .......... .......... .......... 61% 1.24M 3m18s\n324700K .......... .......... .......... .......... .......... 61% 1.14M 3m18s\n324750K .......... .......... .......... .......... .......... 61% 943K 3m18s\n324800K .......... .......... .......... .......... .......... 61% 1.20M 3m18s\n324850K .......... .......... .......... .......... .......... 61% 1.11M 3m18s\n324900K .......... .......... .......... .......... .......... 61% 1.22M 3m18s\n324950K .......... .......... .......... .......... .......... 61% 1.19M 3m18s\n325000K .......... .......... .......... .......... .......... 61% 1.19M 3m18s\n325050K .......... .......... .......... .......... .......... 61% 1.09M 3m18s\n325100K .......... .......... .......... .......... .......... 61% 1.28M 3m18s\n325150K .......... .......... .......... .......... .......... 61% 916K 3m18s\n325200K .......... .......... .......... .......... .......... 61% 1.18M 3m17s\n325250K .......... .......... .......... .......... .......... 61% 1.18M 3m17s\n325300K .......... .......... .......... .......... .......... 61% 1.16M 3m17s\n325350K .......... .......... .......... .......... .......... 61% 1.22M 3m17s\n325400K .......... .......... .......... .......... .......... 61% 1.21M 3m17s\n325450K .......... .......... .......... .......... .......... 61% 1.12M 3m17s\n325500K .......... .......... .......... .......... .......... 61% 1.24M 3m17s\n325550K .......... .......... .......... .......... .......... 61% 847K 3m17s\n325600K .......... .......... .......... .......... .......... 61% 1.36M 3m17s\n325650K .......... .......... .......... .......... .......... 61% 1.13M 3m17s\n325700K .......... .......... .......... .......... .......... 61% 1.27M 3m17s\n325750K .......... .......... .......... .......... .......... 61% 1.17M 3m17s\n325800K .......... .......... .......... .......... .......... 61% 1.18M 3m17s\n325850K .......... .......... .......... .......... .......... 61% 1.23M 3m17s\n325900K .......... .......... .......... .......... .......... 61% 1.10M 3m17s\n325950K .......... .......... .......... .......... .......... 61% 957K 3m17s\n326000K .......... .......... .......... .......... .......... 61% 1.21M 3m17s\n326050K .......... .......... .......... .......... .......... 61% 1.17M 3m17s\n326100K .......... .......... .......... .......... .......... 61% 1.19M 3m17s\n326150K .......... .......... .......... .......... .......... 61% 1.21M 3m17s\n326200K .......... .......... .......... .......... .......... 61% 1.14M 3m16s\n326250K .......... .......... .......... .......... .......... 61% 1.21M 3m16s\n326300K .......... .......... .......... .......... .......... 61% 1.21M 3m16s\n326350K .......... .......... .......... .......... .......... 61% 914K 3m16s\n326400K .......... .......... .......... .......... .......... 61% 1.14M 3m16s\n326450K .......... .......... .......... .......... .......... 61% 1.21M 3m16s\n326500K .......... .......... .......... .......... .......... 61% 1.17M 3m16s\n326550K .......... .......... .......... .......... .......... 61% 166K 3m16s\n326600K .......... .......... .......... .......... .......... 61% 98.2M 3m16s\n326650K .......... .......... .......... .......... .......... 61% 125M 3m16s\n326700K .......... .......... .......... .......... .......... 61% 498K 3m16s\n326750K .......... .......... .......... .......... .......... 61% 60.2M 3m16s\n326800K .......... .......... .......... .......... .......... 61% 142M 3m16s\n326850K .......... .......... .......... .......... .......... 61% 818K 3m16s\n326900K .......... .......... .......... .......... .......... 61% 1.16M 3m16s\n326950K .......... .......... .......... .......... .......... 61% 1.19M 3m16s\n327000K .......... .......... .......... .......... .......... 61% 1.23M 3m16s\n327050K .......... .......... .......... .......... .......... 61% 1.10M 3m16s\n327100K .......... .......... .......... .......... .......... 61% 1.29M 3m16s\n327150K .......... .......... .......... .......... .......... 61% 898K 3m16s\n327200K .......... .......... .......... .......... .......... 61% 1.13M 3m16s\n327250K .......... .......... .......... .......... .......... 61% 1.18M 3m16s\n327300K .......... .......... .......... .......... .......... 61% 1.25M 3m15s\n327350K .......... .......... .......... .......... .......... 61% 1.18M 3m15s\n327400K .......... .......... .......... .......... .......... 61% 1.14M 3m15s\n327450K .......... .......... .......... .......... .......... 61% 1.19M 3m15s\n327500K .......... .......... .......... .......... .......... 61% 1.22M 3m15s\n327550K .......... .......... .......... .......... .......... 61% 947K 3m15s\n327600K .......... .......... .......... .......... .......... 61% 1.17M 3m15s\n327650K .......... .......... .......... .......... .......... 61% 1.15M 3m15s\n327700K .......... .......... .......... .......... .......... 61% 1.14M 3m15s\n327750K .......... .......... .......... .......... .......... 61% 1.24M 3m15s\n327800K .......... .......... .......... .......... .......... 61% 1.24M 3m15s\n327850K .......... .......... .......... .......... .......... 61% 1.14M 3m15s\n327900K .......... .......... .......... .......... .......... 61% 1.19M 3m15s\n327950K .......... .......... .......... .......... .......... 61% 933K 3m15s\n328000K .......... .......... .......... .......... .......... 61% 1.16M 3m15s\n328050K .......... .......... .......... .......... .......... 61% 1.22M 3m15s\n328100K .......... .......... .......... .......... .......... 61% 1.18M 3m15s\n328150K .......... .......... .......... .......... .......... 61% 199K 3m15s\n328200K .......... .......... .......... .......... .......... 61% 307M 3m15s\n328250K .......... .......... .......... .......... .......... 61% 402M 3m15s\n328300K .......... .......... .......... .......... .......... 61% 1.45M 3m15s\n328350K .......... .......... .......... .......... .......... 61% 106M 3m14s\n328400K .......... .......... .......... .......... .......... 61% 733K 3m14s\n328450K .......... .......... .......... .......... .......... 61% 206K 3m14s\n328500K .......... .......... .......... .......... .......... 61% 2.20M 3m14s\n328550K .......... .......... .......... .......... .......... 61% 313M 3m14s\n328600K .......... .......... .......... .......... .......... 61% 138M 3m14s\n328650K .......... .......... .......... .......... .......... 61% 92.5M 3m14s\n328700K .......... .......... .......... .......... .......... 61% 498M 3m14s\n328750K .......... .......... .......... .......... .......... 61% 1.07M 3m14s\n328800K .......... .......... .......... .......... .......... 61% 1.20M 3m14s\n328850K .......... .......... .......... .......... .......... 61% 1.20M 3m14s\n328900K .......... .......... .......... .......... .......... 61% 1.19M 3m14s\n328950K .......... .......... .......... .......... .......... 61% 1.16M 3m14s\n329000K .......... .......... .......... .......... .......... 61% 1.19M 3m14s\n329050K .......... .......... .......... .......... .......... 61% 1.18M 3m14s\n329100K .......... .......... .......... .......... .......... 61% 1.19M 3m14s\n329150K .......... .......... .......... .......... .......... 61% 941K 3m14s\n329200K .......... .......... .......... .......... .......... 61% 1.19M 3m14s\n329250K .......... .......... .......... .......... .......... 61% 1.15M 3m14s\n329300K .......... .......... .......... .......... .......... 61% 1.19M 3m13s\n329350K .......... .......... .......... .......... .......... 61% 1.22M 3m13s\n329400K .......... .......... .......... .......... .......... 61% 1.14M 3m13s\n329450K .......... .......... .......... .......... .......... 61% 1.19M 3m13s\n329500K .......... .......... .......... .......... .......... 61% 1.11M 3m13s\n329550K .......... .......... .......... .......... .......... 61% 977K 3m13s\n329600K .......... .......... .......... .......... .......... 61% 1.17M 3m13s\n329650K .......... .......... .......... .......... .......... 61% 1.20M 3m13s\n329700K .......... .......... .......... .......... .......... 61% 1.21M 3m13s\n329750K .......... .......... .......... .......... .......... 62% 1.18M 3m13s\n329800K .......... .......... .......... .......... .......... 62% 1.04M 3m13s\n329850K .......... .......... .......... .......... .......... 62% 1.40M 3m13s\n329900K .......... .......... .......... .......... .......... 62% 1.15M 3m13s\n329950K .......... .......... .......... .......... .......... 62% 933K 3m13s\n330000K .......... .......... .......... .......... .......... 62% 167K 3m13s\n330050K .......... .......... .......... .......... .......... 62% 67.3M 3m13s\n330100K .......... .......... .......... .......... .......... 62% 125M 3m13s\n330150K .......... .......... .......... .......... .......... 62% 1.47M 3m13s\n330200K .......... .......... .......... .......... .......... 62% 84.4M 3m13s\n330250K .......... .......... .......... .......... .......... 62% 132M 3m13s\n330300K .......... .......... .......... .......... .......... 62% 923K 3m13s\n330350K .......... .......... .......... .......... .......... 62% 918K 3m12s\n330400K .......... .......... .......... .......... .......... 62% 1.20M 3m12s\n330450K .......... .......... .......... .......... .......... 62% 1.13M 3m12s\n330500K .......... .......... .......... .......... .......... 62% 1.18M 3m12s\n330550K .......... .......... .......... .......... .......... 62% 1.25M 3m12s\n330600K .......... .......... .......... .......... .......... 62% 1.19M 3m12s\n330650K .......... .......... .......... .......... .......... 62% 1.10M 3m12s\n330700K .......... .......... .......... .......... .......... 62% 742K 3m12s\n330750K .......... .......... .......... .......... .......... 62% 1.99M 3m12s\n330800K .......... .......... .......... .......... .......... 62% 1.05M 3m12s\n330850K .......... .......... .......... .......... .......... 62% 1.28M 3m12s\n330900K .......... .......... .......... .......... .......... 62% 1.27M 3m12s\n330950K .......... .......... .......... .......... .......... 62% 201K 3m12s\n331000K .......... .......... .......... .......... .......... 62% 19.6M 3m12s\n331050K .......... .......... .......... .......... .......... 62% 61.4M 3m12s\n331100K .......... .......... .......... .......... .......... 62% 113M 3m12s\n331150K .......... .......... .......... .......... .......... 62% 39.9M 3m12s\n331200K .......... .......... .......... .......... .......... 62% 2.14M 3m12s\n331250K .......... .......... .......... .......... .......... 62% 1.09M 3m12s\n331300K .......... .......... .......... .......... .......... 62% 1.28M 3m12s\n331350K .......... .......... .......... .......... .......... 62% 1.13M 3m11s\n331400K .......... .......... .......... .......... .......... 62% 1.11M 3m11s\n331450K .......... .......... .......... .......... .......... 62% 1.28M 3m11s\n331500K .......... .......... .......... .......... .......... 62% 1.21M 3m11s\n331550K .......... .......... .......... .......... .......... 62% 881K 3m11s\n331600K .......... .......... .......... .......... .......... 62% 1.22M 3m11s\n331650K .......... .......... .......... .......... .......... 62% 1.18M 3m11s\n331700K .......... .......... .......... .......... .......... 62% 1.16M 3m11s\n331750K .......... .......... .......... .......... .......... 62% 1.14M 3m11s\n331800K .......... .......... .......... .......... .......... 62% 1.30M 3m11s\n331850K .......... .......... .......... .......... .......... 62% 1.23M 3m11s\n331900K .......... .......... .......... .......... .......... 62% 1.16M 3m11s\n331950K .......... .......... .......... .......... .......... 62% 179K 3m11s\n332000K .......... .......... .......... .......... .......... 62% 34.0M 3m11s\n332050K .......... .......... .......... .......... .......... 62% 121M 3m11s\n332100K .......... .......... .......... .......... .......... 62% 125M 3m11s\n332150K .......... .......... .......... .......... .......... 62% 128M 3m11s\n332200K .......... .......... .......... .......... .......... 62% 39.0M 3m11s\n332250K .......... .......... .......... .......... .......... 62% 986K 3m11s\n332300K .......... .......... .......... .......... .......... 62% 1.07M 3m11s\n332350K .......... .......... .......... .......... .......... 62% 1007K 3m10s\n332400K .......... .......... .......... .......... .......... 62% 1.17M 3m10s\n332450K .......... .......... .......... .......... .......... 62% 1.15M 3m10s\n332500K .......... .......... .......... .......... .......... 62% 1.23M 3m10s\n332550K .......... .......... .......... .......... .......... 62% 1.19M 3m10s\n332600K .......... .......... .......... .......... .......... 62% 1.16M 3m10s\n332650K .......... .......... .......... .......... .......... 62% 1.23M 3m10s\n332700K .......... .......... .......... .......... .......... 62% 1.13M 3m10s\n332750K .......... .......... .......... .......... .......... 62% 927K 3m10s\n332800K .......... .......... .......... .......... .......... 62% 1.05M 3m10s\n332850K .......... .......... .......... .......... .......... 62% 1.41M 3m10s\n332900K .......... .......... .......... .......... .......... 62% 1.14M 3m10s\n332950K .......... .......... .......... .......... .......... 62% 1.25M 3m10s\n333000K .......... .......... .......... .......... .......... 62% 1.18M 3m10s\n333050K .......... .......... .......... .......... .......... 62% 1.18M 3m10s\n333100K .......... .......... .......... .......... .......... 62% 1.19M 3m10s\n333150K .......... .......... .......... .......... .......... 62% 927K 3m10s\n333200K .......... .......... .......... .......... .......... 62% 1.17M 3m10s\n333250K .......... .......... .......... .......... .......... 62% 26.8K 3m11s\n333300K .......... .......... .......... .......... .......... 62% 1.21M 3m11s\n333350K .......... .......... .......... .......... .......... 62% 1.19M 3m11s\n333400K .......... .......... .......... .......... .......... 62% 1.18M 3m10s\n333450K .......... .......... .......... .......... .......... 62% 1.20M 3m10s\n333500K .......... .......... .......... .......... .......... 62% 1.15M 3m10s\n333550K .......... .......... .......... .......... .......... 62% 926K 3m10s\n333600K .......... .......... .......... .......... .......... 62% 1.20M 3m10s\n333650K .......... .......... .......... .......... .......... 62% 1.17M 3m10s\n333700K .......... .......... .......... .......... .......... 62% 1.22M 3m10s\n333750K .......... .......... .......... .......... .......... 62% 1.17M 3m10s\n333800K .......... .......... .......... .......... .......... 62% 1.21M 3m10s\n333850K .......... .......... .......... .......... .......... 62% 1.17M 3m10s\n333900K .......... .......... .......... .......... .......... 62% 1.19M 3m10s\n333950K .......... .......... .......... .......... .......... 62% 888K 3m10s\n334000K .......... .......... .......... .......... .......... 62% 1.20M 3m10s\n334050K .......... .......... .......... .......... .......... 62% 1.20M 3m10s\n334100K .......... .......... .......... .......... .......... 62% 1.20M 3m10s\n334150K .......... .......... .......... .......... .......... 62% 1.16M 3m10s\n334200K .......... .......... .......... .......... .......... 62% 1.20M 3m10s\n334250K .......... .......... .......... .......... .......... 62% 1.15M 3m10s\n334300K .......... .......... .......... .......... .......... 62% 1.18M 3m10s\n334350K .......... .......... .......... .......... .......... 62% 933K 3m10s\n334400K .......... .......... .......... .......... .......... 62% 1.23M 3m9s\n334450K .......... .......... .......... .......... .......... 62% 1.19M 3m9s\n334500K .......... .......... .......... .......... .......... 62% 1.19M 3m9s\n334550K .......... .......... .......... .......... .......... 62% 1.16M 3m9s\n334600K .......... .......... .......... .......... .......... 62% 1.20M 3m9s\n334650K .......... .......... .......... .......... .......... 62% 1.19M 3m9s\n334700K .......... .......... .......... .......... .......... 62% 1.17M 3m9s\n334750K .......... .......... .......... .......... .......... 62% 913K 3m9s\n334800K .......... .......... .......... .......... .......... 62% 1.18M 3m9s\n334850K .......... .......... .......... .......... .......... 62% 1.20M 3m9s\n334900K .......... .......... .......... .......... .......... 62% 1.18M 3m9s\n334950K .......... .......... .......... .......... .......... 62% 1.14M 3m9s\n335000K .......... .......... .......... .......... .......... 62% 1.22M 3m9s\n335050K .......... .......... .......... .......... .......... 63% 1.19M 3m9s\n335100K .......... .......... .......... .......... .......... 63% 1.19M 3m9s\n335150K .......... .......... .......... .......... .......... 63% 915K 3m9s\n335200K .......... .......... .......... .......... .......... 63% 1.18M 3m9s\n335250K .......... .......... .......... .......... .......... 63% 1.19M 3m9s\n335300K .......... .......... .......... .......... .......... 63% 1.17M 3m9s\n335350K .......... .......... .......... .......... .......... 63% 1.21M 3m9s\n335400K .......... .......... .......... .......... .......... 63% 1.19M 3m8s\n335450K .......... .......... .......... .......... .......... 63% 1.12M 3m8s\n335500K .......... .......... .......... .......... .......... 63% 1.25M 3m8s\n335550K .......... .......... .......... .......... .......... 63% 922K 3m8s\n335600K .......... .......... .......... .......... .......... 63% 1.19M 3m8s\n335650K .......... .......... .......... .......... .......... 63% 1.20M 3m8s\n335700K .......... .......... .......... .......... .......... 63% 1.18M 3m8s\n335750K .......... .......... .......... .......... .......... 63% 1.18M 3m8s\n335800K .......... .......... .......... .......... .......... 63% 1.19M 3m8s\n335850K .......... .......... .......... .......... .......... 63% 1.11M 3m8s\n335900K .......... .......... .......... .......... .......... 63% 1.22M 3m8s\n335950K .......... .......... .......... .......... .......... 63% 938K 3m8s\n336000K .......... .......... .......... .......... .......... 63% 1.22M 3m8s\n336050K .......... .......... .......... .......... .......... 63% 1.18M 3m8s\n336100K .......... .......... .......... .......... .......... 63% 1.20M 3m8s\n336150K .......... .......... .......... .......... .......... 63% 1.11M 3m8s\n336200K .......... .......... .......... .......... .......... 63% 1.22M 3m8s\n336250K .......... .......... .......... .......... .......... 63% 1.18M 3m8s\n336300K .......... .......... .......... .......... .......... 63% 1.09M 3m8s\n336350K .......... .......... .......... .......... .......... 63% 966K 3m7s\n336400K .......... .......... .......... .......... .......... 63% 1.20M 3m7s\n336450K .......... .......... .......... .......... .......... 63% 1.12M 3m7s\n336500K .......... .......... .......... .......... .......... 63% 1.26M 3m7s\n336550K .......... .......... .......... .......... .......... 63% 1.18M 3m7s\n336600K .......... .......... .......... .......... .......... 63% 1.21M 3m7s\n336650K .......... .......... .......... .......... .......... 63% 1.17M 3m7s\n336700K .......... .......... .......... .......... .......... 63% 1.21M 3m7s\n336750K .......... .......... .......... .......... .......... 63% 877K 3m7s\n336800K .......... .......... .......... .......... .......... 63% 1.24M 3m7s\n336850K .......... .......... .......... .......... .......... 63% 1.20M 3m7s\n336900K .......... .......... .......... .......... .......... 63% 1.20M 3m7s\n336950K .......... .......... .......... .......... .......... 63% 1.17M 3m7s\n337000K .......... .......... .......... .......... .......... 63% 1.17M 3m7s\n337050K .......... .......... .......... .......... .......... 63% 1.20M 3m7s\n337100K .......... .......... .......... .......... .......... 63% 1.18M 3m7s\n337150K .......... .......... .......... .......... .......... 63% 161K 3m7s\n337200K .......... .......... .......... .......... .......... 63% 81.3M 3m7s\n337250K .......... .......... .......... .......... .......... 63% 90.8M 3m7s\n337300K .......... .......... .......... .......... .......... 63% 1.55M 3m7s\n337350K .......... .......... .......... .......... .......... 63% 119M 3m7s\n337400K .......... .......... .......... .......... .......... 63% 125M 3m6s\n337450K .......... .......... .......... .......... .......... 63% 1.53M 3m6s\n337500K .......... .......... .......... .......... .......... 63% 1.20M 3m6s\n337550K .......... .......... .......... .......... .......... 63% 936K 3m6s\n337600K .......... .......... .......... .......... .......... 63% 1.14M 3m6s\n337650K .......... .......... .......... .......... .......... 63% 1.24M 3m6s\n337700K .......... .......... .......... .......... .......... 63% 1.19M 3m6s\n337750K .......... .......... .......... .......... .......... 63% 1.20M 3m6s\n337800K .......... .......... .......... .......... .......... 63% 1.04M 3m6s\n337850K .......... .......... .......... .......... .......... 63% 1.28M 3m6s\n337900K .......... .......... .......... .......... .......... 63% 1.25M 3m6s\n337950K .......... .......... .......... .......... .......... 63% 933K 3m6s\n338000K .......... .......... .......... .......... .......... 63% 1.17M 3m6s\n338050K .......... .......... .......... .......... .......... 63% 1.19M 3m6s\n338100K .......... .......... .......... .......... .......... 63% 1.19M 3m6s\n338150K .......... .......... .......... .......... .......... 63% 193K 3m6s\n338200K .......... .......... .......... .......... .......... 63% 78.6M 3m6s\n338250K .......... .......... .......... .......... .......... 63% 77.7M 3m6s\n338300K .......... .......... .......... .......... .......... 63% 1.56M 3m6s\n338350K .......... .......... .......... .......... .......... 63% 49.2M 3m6s\n338400K .......... .......... .......... .......... .......... 63% 535K 3m6s\n338450K .......... .......... .......... .......... .......... 63% 211K 3m6s\n338500K .......... .......... .......... .......... .......... 63% 64.2M 3m5s\n338550K .......... .......... .......... .......... .......... 63% 366M 3m5s\n338600K .......... .......... .......... .......... .......... 63% 499M 3m5s\n338650K .......... .......... .......... .......... .......... 63% 549M 3m5s\n338700K .......... .......... .......... .......... .......... 63% 2.66M 3m5s\n338750K .......... .......... .......... .......... .......... 63% 882K 3m5s\n338800K .......... .......... .......... .......... .......... 63% 1.22M 3m5s\n338850K .......... .......... .......... .......... .......... 63% 1.19M 3m5s\n338900K .......... .......... .......... .......... .......... 63% 1.21M 3m5s\n338950K .......... .......... .......... .......... .......... 63% 1.09M 3m5s\n339000K .......... .......... .......... .......... .......... 63% 1.28M 3m5s\n339050K .......... .......... .......... .......... .......... 63% 1.20M 3m5s\n339100K .......... .......... .......... .......... .......... 63% 1.19M 3m5s\n339150K .......... .......... .......... .......... .......... 63% 910K 3m5s\n339200K .......... .......... .......... .......... .......... 63% 1.20M 3m5s\n339250K .......... .......... .......... .......... .......... 63% 1.18M 3m5s\n339300K .......... .......... .......... .......... .......... 63% 1.18M 3m5s\n339350K .......... .......... .......... .......... .......... 63% 1.19M 3m5s\n339400K .......... .......... .......... .......... .......... 63% 1.21M 3m4s\n339450K .......... .......... .......... .......... .......... 63% 1.19M 3m4s\n339500K .......... .......... .......... .......... .......... 63% 1.17M 3m4s\n339550K .......... .......... .......... .......... .......... 63% 884K 3m4s\n339600K .......... .......... .......... .......... .......... 63% 1.22M 3m4s\n339650K .......... .......... .......... .......... .......... 63% 1.18M 3m4s\n339700K .......... .......... .......... .......... .......... 63% 1.19M 3m4s\n339750K .......... .......... .......... .......... .......... 63% 1.21M 3m4s\n339800K .......... .......... .......... .......... .......... 63% 1.16M 3m4s\n339850K .......... .......... .......... .......... .......... 63% 1.18M 3m4s\n339900K .......... .......... .......... .......... .......... 63% 1.20M 3m4s\n339950K .......... .......... .......... .......... .......... 63% 890K 3m4s\n340000K .......... .......... .......... .......... .......... 63% 1.21M 3m4s\n340050K .......... .......... .......... .......... .......... 63% 1.20M 3m4s\n340100K .......... .......... .......... .......... .......... 63% 1.16M 3m4s\n340150K .......... .......... .......... .......... .......... 63% 1.26M 3m4s\n340200K .......... .......... .......... .......... .......... 63% 1.17M 3m4s\n340250K .......... .......... .......... .......... .......... 63% 1.19M 3m4s\n340300K .......... .......... .......... .......... .......... 63% 1.15M 3m4s\n340350K .......... .......... .......... .......... .......... 64% 937K 3m4s\n340400K .......... .......... .......... .......... .......... 64% 1.16M 3m3s\n340450K .......... .......... .......... .......... .......... 64% 1.18M 3m3s\n340500K .......... .......... .......... .......... .......... 64% 1.16M 3m3s\n340550K .......... .......... .......... .......... .......... 64% 1.20M 3m3s\n340600K .......... .......... .......... .......... .......... 64% 1.21M 3m3s\n340650K .......... .......... .......... .......... .......... 64% 1.16M 3m3s\n340700K .......... .......... .......... .......... .......... 64% 1.19M 3m3s\n340750K .......... .......... .......... .......... .......... 64% 922K 3m3s\n340800K .......... .......... .......... .......... .......... 64% 1.10M 3m3s\n340850K .......... .......... .......... .......... .......... 64% 1.28M 3m3s\n340900K .......... .......... .......... .......... .......... 64% 1.22M 3m3s\n340950K .......... .......... .......... .......... .......... 64% 1.18M 3m3s\n341000K .......... .......... .......... .......... .......... 64% 1.19M 3m3s\n341050K .......... .......... .......... .......... .......... 64% 1.18M 3m3s\n341100K .......... .......... .......... .......... .......... 64% 1.18M 3m3s\n341150K .......... .......... .......... .......... .......... 64% 917K 3m3s\n341200K .......... .......... .......... .......... .......... 64% 1.20M 3m3s\n341250K .......... .......... .......... .......... .......... 64% 1.15M 3m3s\n341300K .......... .......... .......... .......... .......... 64% 1.10M 3m3s\n341350K .......... .......... .......... .......... .......... 64% 1.25M 3m3s\n341400K .......... .......... .......... .......... .......... 64% 1.25M 3m2s\n341450K .......... .......... .......... .......... .......... 64% 1.19M 3m2s\n341500K .......... .......... .......... .......... .......... 64% 1.15M 3m2s\n341550K .......... .......... .......... .......... .......... 64% 903K 3m2s\n341600K .......... .......... .......... .......... .......... 64% 1.22M 3m2s\n341650K .......... .......... .......... .......... .......... 64% 1.15M 3m2s\n341700K .......... .......... .......... .......... .......... 64% 1.24M 3m2s\n341750K .......... .......... .......... .......... .......... 64% 1.13M 3m2s\n341800K .......... .......... .......... .......... .......... 64% 1.26M 3m2s\n341850K .......... .......... .......... .......... .......... 64% 1.12M 3m2s\n341900K .......... .......... .......... .......... .......... 64% 1.18M 3m2s\n341950K .......... .......... .......... .......... .......... 64% 922K 3m2s\n342000K .......... .......... .......... .......... .......... 64% 1.22M 3m2s\n342050K .......... .......... .......... .......... .......... 64% 1.19M 3m2s\n342100K .......... .......... .......... .......... .......... 64% 1.14M 3m2s\n342150K .......... .......... .......... .......... .......... 64% 1.20M 3m2s\n342200K .......... .......... .......... .......... .......... 64% 1.23M 3m2s\n342250K .......... .......... .......... .......... .......... 64% 1.10M 3m2s\n342300K .......... .......... .......... .......... .......... 64% 1.32M 3m2s\n342350K .......... .......... .......... .......... .......... 64% 920K 3m2s\n342400K .......... .......... .......... .......... .......... 64% 1.18M 3m1s\n342450K .......... .......... .......... .......... .......... 64% 991K 3m1s\n342500K .......... .......... .......... .......... .......... 64% 1.41M 3m1s\n342550K .......... .......... .......... .......... .......... 64% 1.23M 3m1s\n342600K .......... .......... .......... .......... .......... 64% 1.15M 3m1s\n342650K .......... .......... .......... .......... .......... 64% 1.28M 3m1s\n342700K .......... .......... .......... .......... .......... 64% 1.14M 3m1s\n342750K .......... .......... .......... .......... .......... 64% 916K 3m1s\n342800K .......... .......... .......... .......... .......... 64% 1.06M 3m1s\n342850K .......... .......... .......... .......... .......... 64% 1.36M 3m1s\n342900K .......... .......... .......... .......... .......... 64% 1.09M 3m1s\n342950K .......... .......... .......... .......... .......... 64% 1.28M 3m1s\n343000K .......... .......... .......... .......... .......... 64% 1.22M 3m1s\n343050K .......... .......... .......... .......... .......... 64% 1.18M 3m1s\n343100K .......... .......... .......... .......... .......... 64% 1.14M 3m1s\n343150K .......... .......... .......... .......... .......... 64% 962K 3m1s\n343200K .......... .......... .......... .......... .......... 64% 1.19M 3m1s\n343250K .......... .......... .......... .......... .......... 64% 1.17M 3m1s\n343300K .......... .......... .......... .......... .......... 64% 1.19M 3m1s\n343350K .......... .......... .......... .......... .......... 64% 1.19M 3m0s\n343400K .......... .......... .......... .......... .......... 64% 184K 3m1s\n343450K .......... .......... .......... .......... .......... 64% 121M 3m0s\n343500K .......... .......... .......... .......... .......... 64% 105M 3m0s\n343550K .......... .......... .......... .......... .......... 64% 1.49M 3m0s\n343600K .......... .......... .......... .......... .......... 64% 123M 3m0s\n343650K .......... .......... .......... .......... .......... 64% 563K 3m0s\n343700K .......... .......... .......... .......... .......... 64% 207K 3m0s\n343750K .......... .......... .......... .......... .......... 64% 11.0M 3m0s\n343800K .......... .......... .......... .......... .......... 64% 460M 3m0s\n343850K .......... .......... .......... .......... .......... 64% 142M 3m0s\n343900K .......... .......... .......... .......... .......... 64% 126M 3m0s\n343950K .......... .......... .......... .......... .......... 64% 2.73M 3m0s\n344000K .......... .......... .......... .......... .......... 64% 1.11M 3m0s\n344050K .......... .......... .......... .......... .......... 64% 1.34M 3m0s\n344100K .......... .......... .......... .......... .......... 64% 1.16M 3m0s\n344150K .......... .......... .......... .......... .......... 64% 1.16M 3m0s\n344200K .......... .......... .......... .......... .......... 64% 1.15M 3m0s\n344250K .......... .......... .......... .......... .......... 64% 1.16M 3m0s\n344300K .......... .......... .......... .......... .......... 64% 1.26M 3m0s\n344350K .......... .......... .......... .......... .......... 64% 946K 3m0s\n344400K .......... .......... .......... .......... .......... 64% 1.17M 3m0s\n344450K .......... .......... .......... .......... .......... 64% 1.18M 2m59s\n344500K .......... .......... .......... .......... .......... 64% 1.18M 2m59s\n344550K .......... .......... .......... .......... .......... 64% 1.20M 2m59s\n344600K .......... .......... .......... .......... .......... 64% 1.18M 2m59s\n344650K .......... .......... .......... .......... .......... 64% 1.22M 2m59s\n344700K .......... .......... .......... .......... .......... 64% 1.20M 2m59s\n344750K .......... .......... .......... .......... .......... 64% 892K 2m59s\n344800K .......... .......... .......... .......... .......... 64% 1.19M 2m59s\n344850K .......... .......... .......... .......... .......... 64% 1.19M 2m59s\n344900K .......... .......... .......... .......... .......... 64% 1.19M 2m59s\n344950K .......... .......... .......... .......... .......... 64% 1.14M 2m59s\n345000K .......... .......... .......... .......... .......... 64% 1.18M 2m59s\n345050K .......... .......... .......... .......... .......... 64% 1.22M 2m59s\n345100K .......... .......... .......... .......... .......... 64% 1.19M 2m59s\n345150K .......... .......... .......... .......... .......... 64% 910K 2m59s\n345200K .......... .......... .......... .......... .......... 64% 1.22M 2m59s\n345250K .......... .......... .......... .......... .......... 64% 1.17M 2m59s\n345300K .......... .......... .......... .......... .......... 64% 1.16M 2m59s\n345350K .......... .......... .......... .......... .......... 64% 1.21M 2m59s\n345400K .......... .......... .......... .......... .......... 64% 1.19M 2m58s\n345450K .......... .......... .......... .......... .......... 64% 1.17M 2m58s\n345500K .......... .......... .......... .......... .......... 64% 1.22M 2m58s\n345550K .......... .......... .......... .......... .......... 64% 915K 2m58s\n345600K .......... .......... .......... .......... .......... 64% 1.16M 2m58s\n345650K .......... .......... .......... .......... .......... 64% 1.18M 2m58s\n345700K .......... .......... .......... .......... .......... 65% 1.19M 2m58s\n345750K .......... .......... .......... .......... .......... 65% 1.16M 2m58s\n345800K .......... .......... .......... .......... .......... 65% 1.23M 2m58s\n345850K .......... .......... .......... .......... .......... 65% 1.20M 2m58s\n345900K .......... .......... .......... .......... .......... 65% 1.18M 2m58s\n345950K .......... .......... .......... .......... .......... 65% 902K 2m58s\n346000K .......... .......... .......... .......... .......... 65% 1.18M 2m58s\n346050K .......... .......... .......... .......... .......... 65% 1.19M 2m58s\n346100K .......... .......... .......... .......... .......... 65% 1.14M 2m58s\n346150K .......... .......... .......... .......... .......... 65% 1.23M 2m58s\n346200K .......... .......... .......... .......... .......... 65% 1.19M 2m58s\n346250K .......... .......... .......... .......... .......... 65% 1.17M 2m58s\n346300K .......... .......... .......... .......... .......... 65% 1.20M 2m58s\n346350K .......... .......... .......... .......... .......... 65% 904K 2m58s\n346400K .......... .......... .......... .......... .......... 65% 1.20M 2m57s\n346450K .......... .......... .......... .......... .......... 65% 1.16M 2m57s\n346500K .......... .......... .......... .......... .......... 65% 1.21M 2m57s\n346550K .......... .......... .......... .......... .......... 65% 1.19M 2m57s\n346600K .......... .......... .......... .......... .......... 65% 1.16M 2m57s\n346650K .......... .......... .......... .......... .......... 65% 1.19M 2m57s\n346700K .......... .......... .......... .......... .......... 65% 1.18M 2m57s\n346750K .......... .......... .......... .......... .......... 65% 911K 2m57s\n346800K .......... .......... .......... .......... .......... 65% 1.16M 2m57s\n346850K .......... .......... .......... .......... .......... 65% 1.10M 2m57s\n346900K .......... .......... .......... .......... .......... 65% 1.28M 2m57s\n346950K .......... .......... .......... .......... .......... 65% 1.18M 2m57s\n347000K .......... .......... .......... .......... .......... 65% 1.23M 2m57s\n347050K .......... .......... .......... .......... .......... 65% 1.16M 2m57s\n347100K .......... .......... .......... .......... .......... 65% 1.20M 2m57s\n347150K .......... .......... .......... .......... .......... 65% 899K 2m57s\n347200K .......... .......... .......... .......... .......... 65% 1.20M 2m57s\n347250K .......... .......... .......... .......... .......... 65% 1.21M 2m57s\n347300K .......... .......... .......... .......... .......... 65% 1.16M 2m57s\n347350K .......... .......... .......... .......... .......... 65% 1.16M 2m57s\n347400K .......... .......... .......... .......... .......... 65% 1.21M 2m56s\n347450K .......... .......... .......... .......... .......... 65% 1.20M 2m56s\n347500K .......... .......... .......... .......... .......... 65% 1.16M 2m56s\n347550K .......... .......... .......... .......... .......... 65% 915K 2m56s\n347600K .......... .......... .......... .......... .......... 65% 1.17M 2m56s\n347650K .......... .......... .......... .......... .......... 65% 1.22M 2m56s\n347700K .......... .......... .......... .......... .......... 65% 1.15M 2m56s\n347750K .......... .......... .......... .......... .......... 65% 1.20M 2m56s\n347800K .......... .......... .......... .......... .......... 65% 1.16M 2m56s\n347850K .......... .......... .......... .......... .......... 65% 1.23M 2m56s\n347900K .......... .......... .......... .......... .......... 65% 1.20M 2m56s\n347950K .......... .......... .......... .......... .......... 65% 890K 2m56s\n348000K .......... .......... .......... .......... .......... 65% 1.21M 2m56s\n348050K .......... .......... .......... .......... .......... 65% 1.06M 2m56s\n348100K .......... .......... .......... .......... .......... 65% 1.24M 2m56s\n348150K .......... .......... .......... .......... .......... 65% 1.27M 2m56s\n348200K .......... .......... .......... .......... .......... 65% 1.20M 2m56s\n348250K .......... .......... .......... .......... .......... 65% 1.18M 2m56s\n348300K .......... .......... .......... .......... .......... 65% 1.14M 2m56s\n348350K .......... .......... .......... .......... .......... 65% 938K 2m56s\n348400K .......... .......... .......... .......... .......... 65% 1.20M 2m55s\n348450K .......... .......... .......... .......... .......... 65% 1.11M 2m55s\n348500K .......... .......... .......... .......... .......... 65% 1.27M 2m55s\n348550K .......... .......... .......... .......... .......... 65% 1.10M 2m55s\n348600K .......... .......... .......... .......... .......... 65% 1.29M 2m55s\n348650K .......... .......... .......... .......... .......... 65% 1.15M 2m55s\n348700K .......... .......... .......... .......... .......... 65% 1.22M 2m55s\n348750K .......... .......... .......... .......... .......... 65% 929K 2m55s\n348800K .......... .......... .......... .......... .......... 65% 1.19M 2m55s\n348850K .......... .......... .......... .......... .......... 65% 1.19M 2m55s\n348900K .......... .......... .......... .......... .......... 65% 1.17M 2m55s\n348950K .......... .......... .......... .......... .......... 65% 1.15M 2m55s\n349000K .......... .......... .......... .......... .......... 65% 1.25M 2m55s\n349050K .......... .......... .......... .......... .......... 65% 1.18M 2m55s\n349100K .......... .......... .......... .......... .......... 65% 1.12M 2m55s\n349150K .......... .......... .......... .......... .......... 65% 922K 2m55s\n349200K .......... .......... .......... .......... .......... 65% 1.22M 2m55s\n349250K .......... .......... .......... .......... .......... 65% 1.19M 2m55s\n349300K .......... .......... .......... .......... .......... 65% 1.17M 2m55s\n349350K .......... .......... .......... .......... .......... 65% 1.21M 2m54s\n349400K .......... .......... .......... .......... .......... 65% 1.16M 2m54s\n349450K .......... .......... .......... .......... .......... 65% 1.24M 2m54s\n349500K .......... .......... .......... .......... .......... 65% 1.09M 2m54s\n349550K .......... .......... .......... .......... .......... 65% 972K 2m54s\n349600K .......... .......... .......... .......... .......... 65% 1.07M 2m54s\n349650K .......... .......... .......... .......... .......... 65% 1.33M 2m54s\n349700K .......... .......... .......... .......... .......... 65% 1.18M 2m54s\n349750K .......... .......... .......... .......... .......... 65% 1.17M 2m54s\n349800K .......... .......... .......... .......... .......... 65% 1.22M 2m54s\n349850K .......... .......... .......... .......... .......... 65% 1.16M 2m54s\n349900K .......... .......... .......... .......... .......... 65% 1.19M 2m54s\n349950K .......... .......... .......... .......... .......... 65% 905K 2m54s\n350000K .......... .......... .......... .......... .......... 65% 1.20M 2m54s\n350050K .......... .......... .......... .......... .......... 65% 1.18M 2m54s\n350100K .......... .......... .......... .......... .......... 65% 1.13M 2m54s\n350150K .......... .......... .......... .......... .......... 65% 1.22M 2m54s\n350200K .......... .......... .......... .......... .......... 65% 1.22M 2m54s\n350250K .......... .......... .......... .......... .......... 65% 1.18M 2m54s\n350300K .......... .......... .......... .......... .......... 65% 1.18M 2m54s\n350350K .......... .......... .......... .......... .......... 65% 932K 2m53s\n350400K .......... .......... .......... .......... .......... 65% 1.16M 2m53s\n350450K .......... .......... .......... .......... .......... 65% 1.21M 2m53s\n350500K .......... .......... .......... .......... .......... 65% 1.20M 2m53s\n350550K .......... .......... .......... .......... .......... 65% 1.15M 2m53s\n350600K .......... .......... .......... .......... .......... 65% 1.24M 2m53s\n350650K .......... .......... .......... .......... .......... 65% 1.17M 2m53s\n350700K .......... .......... .......... .......... .......... 65% 1.19M 2m53s\n350750K .......... .......... .......... .......... .......... 65% 898K 2m53s\n350800K .......... .......... .......... .......... .......... 65% 1.20M 2m53s\n350850K .......... .......... .......... .......... .......... 65% 1.18M 2m53s\n350900K .......... .......... .......... .......... .......... 65% 1.20M 2m53s\n350950K .......... .......... .......... .......... .......... 65% 1.20M 2m53s\n351000K .......... .......... .......... .......... .......... 66% 1.16M 2m53s\n351050K .......... .......... .......... .......... .......... 66% 1.22M 2m53s\n351100K .......... .......... .......... .......... .......... 66% 1.18M 2m53s\n351150K .......... .......... .......... .......... .......... 66% 884K 2m53s\n351200K .......... .......... .......... .......... .......... 66% 1.19M 2m53s\n351250K .......... .......... .......... .......... .......... 66% 1.24M 2m53s\n351300K .......... .......... .......... .......... .......... 66% 1.17M 2m53s\n351350K .......... .......... .......... .......... .......... 66% 1.20M 2m52s\n351400K .......... .......... .......... .......... .......... 66% 1.15M 2m52s\n351450K .......... .......... .......... .......... .......... 66% 1.25M 2m52s\n351500K .......... .......... .......... .......... .......... 66% 1.12M 2m52s\n351550K .......... .......... .......... .......... .......... 66% 942K 2m52s\n351600K .......... .......... .......... .......... .......... 66% 1.20M 2m52s\n351650K .......... .......... .......... .......... .......... 66% 1.17M 2m52s\n351700K .......... .......... .......... .......... .......... 66% 1.20M 2m52s\n351750K .......... .......... .......... .......... .......... 66% 1.18M 2m52s\n351800K .......... .......... .......... .......... .......... 66% 1.19M 2m52s\n351850K .......... .......... .......... .......... .......... 66% 1.18M 2m52s\n351900K .......... .......... .......... .......... .......... 66% 1.21M 2m52s\n351950K .......... .......... .......... .......... .......... 66% 167K 2m52s\n352000K .......... .......... .......... .......... .......... 66% 143M 2m52s\n352050K .......... .......... .......... .......... .......... 66% 162M 2m52s\n352100K .......... .......... .......... .......... .......... 66% 1.52M 2m52s\n352150K .......... .......... .......... .......... .......... 66% 142M 2m52s\n352200K .......... .......... .......... .......... .......... 66% 167M 2m52s\n352250K .......... .......... .......... .......... .......... 66% 734K 2m52s\n352300K .......... .......... .......... .......... .......... 66% 1.12M 2m52s\n352350K .......... .......... .......... .......... .......... 66% 917K 2m52s\n352400K .......... .......... .......... .......... .......... 66% 1.22M 2m51s\n352450K .......... .......... .......... .......... .......... 66% 1.17M 2m51s\n352500K .......... .......... .......... .......... .......... 66% 1.19M 2m51s\n352550K .......... .......... .......... .......... .......... 66% 1.18M 2m51s\n352600K .......... .......... .......... .......... .......... 66% 1.21M 2m51s\n352650K .......... .......... .......... .......... .......... 66% 1.18M 2m51s\n352700K .......... .......... .......... .......... .......... 66% 1.17M 2m51s\n352750K .......... .......... .......... .......... .......... 66% 932K 2m51s\n352800K .......... .......... .......... .......... .......... 66% 1.19M 2m51s\n352850K .......... .......... .......... .......... .......... 66% 1.18M 2m51s\n352900K .......... .......... .......... .......... .......... 66% 213K 2m51s\n352950K .......... .......... .......... .......... .......... 66% 436M 2m51s\n353000K .......... .......... .......... .......... .......... 66% 12.8M 2m51s\n353050K .......... .......... .......... .......... .......... 66% 27.4M 2m51s\n353100K .......... .......... .......... .......... .......... 66% 15.1M 2m51s\n353150K .......... .......... .......... .......... .......... 66% 1.41M 2m51s\n353200K .......... .......... .......... .......... .......... 66% 1.21M 2m51s\n353250K .......... .......... .......... .......... .......... 66% 1.20M 2m51s\n353300K .......... .......... .......... .......... .......... 66% 1.17M 2m51s\n353350K .......... .......... .......... .......... .......... 66% 1.18M 2m51s\n353400K .......... .......... .......... .......... .......... 66% 1.10M 2m50s\n353450K .......... .......... .......... .......... .......... 66% 1.25M 2m50s\n353500K .......... .......... .......... .......... .......... 66% 1.21M 2m50s\n353550K .......... .......... .......... .......... .......... 66% 931K 2m50s\n353600K .......... .......... .......... .......... .......... 66% 1.19M 2m50s\n353650K .......... .......... .......... .......... .......... 66% 1.17M 2m50s\n353700K .......... .......... .......... .......... .......... 66% 1.21M 2m50s\n353750K .......... .......... .......... .......... .......... 66% 1.21M 2m50s\n353800K .......... .......... .......... .......... .......... 66% 1.21M 2m50s\n353850K .......... .......... .......... .......... .......... 66% 1.17M 2m50s\n353900K .......... .......... .......... .......... .......... 66% 1.03M 2m50s\n353950K .......... .......... .......... .......... .......... 66% 1.01M 2m50s\n354000K .......... .......... .......... .......... .......... 66% 207K 2m50s\n354050K .......... .......... .......... .......... .......... 66% 348M 2m50s\n354100K .......... .......... .......... .......... .......... 66% 521M 2m50s\n354150K .......... .......... .......... .......... .......... 66% 33.2M 2m50s\n354200K .......... .......... .......... .......... .......... 66% 39.1M 2m50s\n354250K .......... .......... .......... .......... .......... 66% 1.42M 2m50s\n354300K .......... .......... .......... .......... .......... 66% 1.17M 2m50s\n354350K .......... .......... .......... .......... .......... 66% 926K 2m50s\n354400K .......... .......... .......... .......... .......... 66% 1.14M 2m49s\n354450K .......... .......... .......... .......... .......... 66% 1.19M 2m49s\n354500K .......... .......... .......... .......... .......... 66% 1.26M 2m49s\n354550K .......... .......... .......... .......... .......... 66% 1.16M 2m49s\n354600K .......... .......... .......... .......... .......... 66% 1.16M 2m49s\n354650K .......... .......... .......... .......... .......... 66% 1.21M 2m49s\n354700K .......... .......... .......... .......... .......... 66% 1.16M 2m49s\n354750K .......... .......... .......... .......... .......... 66% 936K 2m49s\n354800K .......... .......... .......... .......... .......... 66% 1.16M 2m49s\n354850K .......... .......... .......... .......... .......... 66% 1.24M 2m49s\n354900K .......... .......... .......... .......... .......... 66% 1.16M 2m49s\n354950K .......... .......... .......... .......... .......... 66% 1.19M 2m49s\n355000K .......... .......... .......... .......... .......... 66% 1.21M 2m49s\n355050K .......... .......... .......... .......... .......... 66% 1.17M 2m49s\n355100K .......... .......... .......... .......... .......... 66% 1.18M 2m49s\n355150K .......... .......... .......... .......... .......... 66% 926K 2m49s\n355200K .......... .......... .......... .......... .......... 66% 1.20M 2m49s\n355250K .......... .......... .......... .......... .......... 66% 1.20M 2m49s\n355300K .......... .......... .......... .......... .......... 66% 1.18M 2m49s\n355350K .......... .......... .......... .......... .......... 66% 1.18M 2m49s\n355400K .......... .......... .......... .......... .......... 66% 1.18M 2m48s\n355450K .......... .......... .......... .......... .......... 66% 1.20M 2m48s\n355500K .......... .......... .......... .......... .......... 66% 1.19M 2m48s\n355550K .......... .......... .......... .......... .......... 66% 907K 2m48s\n355600K .......... .......... .......... .......... .......... 66% 1.17M 2m48s\n355650K .......... .......... .......... .......... .......... 66% 1.18M 2m48s\n355700K .......... .......... .......... .......... .......... 66% 1.20M 2m48s\n355750K .......... .......... .......... .......... .......... 66% 1.20M 2m48s\n355800K .......... .......... .......... .......... .......... 66% 1.19M 2m48s\n355850K .......... .......... .......... .......... .......... 66% 1.18M 2m48s\n355900K .......... .......... .......... .......... .......... 66% 1.15M 2m48s\n355950K .......... .......... .......... .......... .......... 66% 932K 2m48s\n356000K .......... .......... .......... .......... .......... 66% 1.21M 2m48s\n356050K .......... .......... .......... .......... .......... 66% 1.19M 2m48s\n356100K .......... .......... .......... .......... .......... 66% 1.18M 2m48s\n356150K .......... .......... .......... .......... .......... 66% 1.18M 2m48s\n356200K .......... .......... .......... .......... .......... 66% 1.20M 2m48s\n356250K .......... .......... .......... .......... .......... 66% 1.11M 2m48s\n356300K .......... .......... .......... .......... .......... 67% 1.26M 2m48s\n356350K .......... .......... .......... .......... .......... 67% 936K 2m48s\n356400K .......... .......... .......... .......... .......... 67% 1.18M 2m47s\n356450K .......... .......... .......... .......... .......... 67% 1.14M 2m47s\n356500K .......... .......... .......... .......... .......... 67% 1.20M 2m47s\n356550K .......... .......... .......... .......... .......... 67% 1.19M 2m47s\n356600K .......... .......... .......... .......... .......... 67% 1.18M 2m47s\n356650K .......... .......... .......... .......... .......... 67% 1.14M 2m47s\n356700K .......... .......... .......... .......... .......... 67% 1.20M 2m47s\n356750K .......... .......... .......... .......... .......... 67% 932K 2m47s\n356800K .......... .......... .......... .......... .......... 67% 1.19M 2m47s\n356850K .......... .......... .......... .......... .......... 67% 1.20M 2m47s\n356900K .......... .......... .......... .......... .......... 67% 1.15M 2m47s\n356950K .......... .......... .......... .......... .......... 67% 1.23M 2m47s\n357000K .......... .......... .......... .......... .......... 67% 1.13M 2m47s\n357050K .......... .......... .......... .......... .......... 67% 1.24M 2m47s\n357100K .......... .......... .......... .......... .......... 67% 1.16M 2m47s\n357150K .......... .......... .......... .......... .......... 67% 933K 2m47s\n357200K .......... .......... .......... .......... .......... 67% 1.14M 2m47s\n357250K .......... .......... .......... .......... .......... 67% 1.26M 2m47s\n357300K .......... .......... .......... .......... .......... 67% 1.19M 2m47s\n357350K .......... .......... .......... .......... .......... 67% 1.17M 2m47s\n357400K .......... .......... .......... .......... .......... 67% 1.13M 2m46s\n357450K .......... .......... .......... .......... .......... 67% 1.23M 2m46s\n357500K .......... .......... .......... .......... .......... 67% 1.20M 2m46s\n357550K .......... .......... .......... .......... .......... 67% 916K 2m46s\n357600K .......... .......... .......... .......... .......... 67% 1.14M 2m46s\n357650K .......... .......... .......... .......... .......... 67% 1.17M 2m46s\n357700K .......... .......... .......... .......... .......... 67% 1.22M 2m46s\n357750K .......... .......... .......... .......... .......... 67% 1.18M 2m46s\n357800K .......... .......... .......... .......... .......... 67% 1.19M 2m46s\n357850K .......... .......... .......... .......... .......... 67% 1.18M 2m46s\n357900K .......... .......... .......... .......... .......... 67% 1.18M 2m46s\n357950K .......... .......... .......... .......... .......... 67% 935K 2m46s\n358000K .......... .......... .......... .......... .......... 67% 1.12M 2m46s\n358050K .......... .......... .......... .......... .......... 67% 1.23M 2m46s\n358100K .......... .......... .......... .......... .......... 67% 1.19M 2m46s\n358150K .......... .......... .......... .......... .......... 67% 1.19M 2m46s\n358200K .......... .......... .......... .......... .......... 67% 1.18M 2m46s\n358250K .......... .......... .......... .......... .......... 67% 1.18M 2m46s\n358300K .......... .......... .......... .......... .......... 67% 1.18M 2m46s\n358350K .......... .......... .......... .......... .......... 67% 937K 2m46s\n358400K .......... .......... .......... .......... .......... 67% 1.18M 2m45s\n358450K .......... .......... .......... .......... .......... 67% 1.19M 2m45s\n358500K .......... .......... .......... .......... .......... 67% 1.10M 2m45s\n358550K .......... .......... .......... .......... .......... 67% 1.31M 2m45s\n358600K .......... .......... .......... .......... .......... 67% 1.18M 2m45s\n358650K .......... .......... .......... .......... .......... 67% 1.16M 2m45s\n358700K .......... .......... .......... .......... .......... 67% 1.18M 2m45s\n358750K .......... .......... .......... .......... .......... 67% 891K 2m45s\n358800K .......... .......... .......... .......... .......... 67% 1.21M 2m45s\n358850K .......... .......... .......... .......... .......... 67% 1.19M 2m45s\n358900K .......... .......... .......... .......... .......... 67% 1.22M 2m45s\n358950K .......... .......... .......... .......... .......... 67% 1.11M 2m45s\n359000K .......... .......... .......... .......... .......... 67% 1.22M 2m45s\n359050K .......... .......... .......... .......... .......... 67% 1.25M 2m45s\n359100K .......... .......... .......... .......... .......... 67% 1.19M 2m45s\n359150K .......... .......... .......... .......... .......... 67% 913K 2m45s\n359200K .......... .......... .......... .......... .......... 67% 1.19M 2m45s\n359250K .......... .......... .......... .......... .......... 67% 1.17M 2m45s\n359300K .......... .......... .......... .......... .......... 67% 1.20M 2m45s\n359350K .......... .......... .......... .......... .......... 67% 1.19M 2m45s\n359400K .......... .......... .......... .......... .......... 67% 1.13M 2m44s\n359450K .......... .......... .......... .......... .......... 67% 1.19M 2m44s\n359500K .......... .......... .......... .......... .......... 67% 1.23M 2m44s\n359550K .......... .......... .......... .......... .......... 67% 924K 2m44s\n359600K .......... .......... .......... .......... .......... 67% 1.21M 2m44s\n359650K .......... .......... .......... .......... .......... 67% 1.17M 2m44s\n359700K .......... .......... .......... .......... .......... 67% 1.17M 2m44s\n359750K .......... .......... .......... .......... .......... 67% 1.12M 2m44s\n359800K .......... .......... .......... .......... .......... 67% 1.22M 2m44s\n359850K .......... .......... .......... .......... .......... 67% 1.20M 2m44s\n359900K .......... .......... .......... .......... .......... 67% 1.22M 2m44s\n359950K .......... .......... .......... .......... .......... 67% 902K 2m44s\n360000K .......... .......... .......... .......... .......... 67% 1.18M 2m44s\n360050K .......... .......... .......... .......... .......... 67% 1.18M 2m44s\n360100K .......... .......... .......... .......... .......... 67% 1.23M 2m44s\n360150K .......... .......... .......... .......... .......... 67% 1.17M 2m44s\n360200K .......... .......... .......... .......... .......... 67% 1.20M 2m44s\n360250K .......... .......... .......... .......... .......... 67% 1.19M 2m44s\n360300K .......... .......... .......... .......... .......... 67% 1.08M 2m44s\n360350K .......... .......... .......... .......... .......... 67% 986K 2m44s\n360400K .......... .......... .......... .......... .......... 67% 1.16M 2m43s\n360450K .......... .......... .......... .......... .......... 67% 1.16M 2m43s\n360500K .......... .......... .......... .......... .......... 67% 1.27M 2m43s\n360550K .......... .......... .......... .......... .......... 67% 1.16M 2m43s\n360600K .......... .......... .......... .......... .......... 67% 1.21M 2m43s\n360650K .......... .......... .......... .......... .......... 67% 1.20M 2m43s\n360700K .......... .......... .......... .......... .......... 67% 1.17M 2m43s\n360750K .......... .......... .......... .......... .......... 67% 869K 2m43s\n360800K .......... .......... .......... .......... .......... 67% 1.18M 2m43s\n360850K .......... .......... .......... .......... .......... 67% 1.23M 2m43s\n360900K .......... .......... .......... .......... .......... 67% 1.20M 2m43s\n360950K .......... .......... .......... .......... .......... 67% 1.19M 2m43s\n361000K .......... .......... .......... .......... .......... 67% 1.16M 2m43s\n361050K .......... .......... .......... .......... .......... 67% 1.22M 2m43s\n361100K .......... .......... .......... .......... .......... 67% 1.20M 2m43s\n361150K .......... .......... .......... .......... .......... 67% 918K 2m43s\n361200K .......... .......... .......... .......... .......... 67% 1.19M 2m43s\n361250K .......... .......... .......... .......... .......... 67% 1.17M 2m43s\n361300K .......... .......... .......... .......... .......... 67% 1.22M 2m43s\n361350K .......... .......... .......... .......... .......... 67% 1.14M 2m43s\n361400K .......... .......... .......... .......... .......... 67% 151K 2m43s\n361450K .......... .......... .......... .......... .......... 67% 80.0M 2m43s\n361500K .......... .......... .......... .......... .......... 67% 171M 2m42s\n361550K .......... .......... .......... .......... .......... 67% 1.46M 2m42s\n361600K .......... .......... .......... .......... .......... 67% 161M 2m42s\n361650K .......... .......... .......... .......... .......... 68% 115M 2m42s\n361700K .......... .......... .......... .......... .......... 68% 772K 2m42s\n361750K .......... .......... .......... .......... .......... 68% 1.18M 2m42s\n361800K .......... .......... .......... .......... .......... 68% 1.21M 2m42s\n361850K .......... .......... .......... .......... .......... 68% 1.19M 2m42s\n361900K .......... .......... .......... .......... .......... 68% 1.19M 2m42s\n361950K .......... .......... .......... .......... .......... 68% 900K 2m42s\n362000K .......... .......... .......... .......... .......... 68% 1.16M 2m42s\n362050K .......... .......... .......... .......... .......... 68% 1.17M 2m42s\n362100K .......... .......... .......... .......... .......... 68% 1.20M 2m42s\n362150K .......... .......... .......... .......... .......... 68% 1.21M 2m42s\n362200K .......... .......... .......... .......... .......... 68% 1.22M 2m42s\n362250K .......... .......... .......... .......... .......... 68% 1.17M 2m42s\n362300K .......... .......... .......... .......... .......... 68% 1.16M 2m42s\n362350K .......... .......... .......... .......... .......... 68% 162K 2m42s\n362400K .......... .......... .......... .......... .......... 68% 72.5M 2m42s\n362450K .......... .......... .......... .......... .......... 68% 166M 2m42s\n362500K .......... .......... .......... .......... .......... 68% 107M 2m42s\n362550K .......... .......... .......... .......... .......... 68% 1.22M 2m41s\n362600K .......... .......... .......... .......... .......... 68% 124M 2m41s\n362650K .......... .......... .......... .......... .......... 68% 741K 2m41s\n362700K .......... .......... .......... .......... .......... 68% 197K 2m41s\n362750K .......... .......... .......... .......... .......... 68% 2.54M 2m41s\n362800K .......... .......... .......... .......... .......... 68% 88.0M 2m41s\n362850K .......... .......... .......... .......... .......... 68% 70.6M 2m41s\n362900K .......... .......... .......... .......... .......... 68% 113M 2m41s\n362950K .......... .......... .......... .......... .......... 68% 118M 2m41s\n363000K .......... .......... .......... .......... .......... 68% 1.22M 2m41s\n363050K .......... .......... .......... .......... .......... 68% 1.21M 2m41s\n363100K .......... .......... .......... .......... .......... 68% 1.19M 2m41s\n363150K .......... .......... .......... .......... .......... 68% 900K 2m41s\n363200K .......... .......... .......... .......... .......... 68% 1.19M 2m41s\n363250K .......... .......... .......... .......... .......... 68% 1.18M 2m41s\n363300K .......... .......... .......... .......... .......... 68% 1.22M 2m41s\n363350K .......... .......... .......... .......... .......... 68% 1.19M 2m41s\n363400K .......... .......... .......... .......... .......... 68% 1.18M 2m41s\n363450K .......... .......... .......... .......... .......... 68% 1.18M 2m41s\n363500K .......... .......... .......... .......... .......... 68% 1.21M 2m40s\n363550K .......... .......... .......... .......... .......... 68% 905K 2m40s\n363600K .......... .......... .......... .......... .......... 68% 1.19M 2m40s\n363650K .......... .......... .......... .......... .......... 68% 1.20M 2m40s\n363700K .......... .......... .......... .......... .......... 68% 1.18M 2m40s\n363750K .......... .......... .......... .......... .......... 68% 1.21M 2m40s\n363800K .......... .......... .......... .......... .......... 68% 1.20M 2m40s\n363850K .......... .......... .......... .......... .......... 68% 1.15M 2m40s\n363900K .......... .......... .......... .......... .......... 68% 1.20M 2m40s\n363950K .......... .......... .......... .......... .......... 68% 905K 2m40s\n364000K .......... .......... .......... .......... .......... 68% 830K 2m40s\n364050K .......... .......... .......... .......... .......... 68% 2.10M 2m40s\n364100K .......... .......... .......... .......... .......... 68% 1.19M 2m40s\n364150K .......... .......... .......... .......... .......... 68% 1.21M 2m40s\n364200K .......... .......... .......... .......... .......... 68% 1.19M 2m40s\n364250K .......... .......... .......... .......... .......... 68% 1.18M 2m40s\n364300K .......... .......... .......... .......... .......... 68% 1.15M 2m40s\n364350K .......... .......... .......... .......... .......... 68% 954K 2m40s\n364400K .......... .......... .......... .......... .......... 68% 1.18M 2m40s\n364450K .......... .......... .......... .......... .......... 68% 1.15M 2m40s\n364500K .......... .......... .......... .......... .......... 68% 1.23M 2m40s\n364550K .......... .......... .......... .......... .......... 68% 1.16M 2m39s\n364600K .......... .......... .......... .......... .......... 68% 1.13M 2m39s\n364650K .......... .......... .......... .......... .......... 68% 1.28M 2m39s\n364700K .......... .......... .......... .......... .......... 68% 1.14M 2m39s\n364750K .......... .......... .......... .......... .......... 68% 927K 2m39s\n364800K .......... .......... .......... .......... .......... 68% 1.16M 2m39s\n364850K .......... .......... .......... .......... .......... 68% 1.23M 2m39s\n364900K .......... .......... .......... .......... .......... 68% 1.17M 2m39s\n364950K .......... .......... .......... .......... .......... 68% 1.22M 2m39s\n365000K .......... .......... .......... .......... .......... 68% 1.20M 2m39s\n365050K .......... .......... .......... .......... .......... 68% 1.15M 2m39s\n365100K .......... .......... .......... .......... .......... 68% 1.19M 2m39s\n365150K .......... .......... .......... .......... .......... 68% 905K 2m39s\n365200K .......... .......... .......... .......... .......... 68% 170K 2m39s\n365250K .......... .......... .......... .......... .......... 68% 99.5M 2m39s\n365300K .......... .......... .......... .......... .......... 68% 178M 2m39s\n365350K .......... .......... .......... .......... .......... 68% 1.50M 2m39s\n365400K .......... .......... .......... .......... .......... 68% 73.1M 2m39s\n365450K .......... .......... .......... .......... .......... 68% 146M 2m39s\n365500K .......... .......... .......... .......... .......... 68% 889K 2m39s\n365550K .......... .......... .......... .......... .......... 68% 934K 2m39s\n365600K .......... .......... .......... .......... .......... 68% 1.17M 2m38s\n365650K .......... .......... .......... .......... .......... 68% 1.15M 2m38s\n365700K .......... .......... .......... .......... .......... 68% 1.24M 2m38s\n365750K .......... .......... .......... .......... .......... 68% 1.11M 2m38s\n365800K .......... .......... .......... .......... .......... 68% 1.18M 2m38s\n365850K .......... .......... .......... .......... .......... 68% 1.25M 2m38s\n365900K .......... .......... .......... .......... .......... 68% 1.18M 2m38s\n365950K .......... .......... .......... .......... .......... 68% 914K 2m38s\n366000K .......... .......... .......... .......... .......... 68% 1.22M 2m38s\n366050K .......... .......... .......... .......... .......... 68% 1.17M 2m38s\n366100K .......... .......... .......... .......... .......... 68% 1.23M 2m38s\n366150K .......... .......... .......... .......... .......... 68% 1.17M 2m38s\n366200K .......... .......... .......... .......... .......... 68% 227K 2m38s\n366250K .......... .......... .......... .......... .......... 68% 18.3M 2m38s\n366300K .......... .......... .......... .......... .......... 68% 8.97M 2m38s\n366350K .......... .......... .......... .......... .......... 68% 31.3M 2m38s\n366400K .......... .......... .......... .......... .......... 68% 6.00M 2m38s\n366450K .......... .......... .......... .......... .......... 68% 1.24M 2m38s\n366500K .......... .......... .......... .......... .......... 68% 1.23M 2m38s\n366550K .......... .......... .......... .......... .......... 68% 1.17M 2m38s\n366600K .......... .......... .......... .......... .......... 68% 1.18M 2m37s\n366650K .......... .......... .......... .......... .......... 68% 1.19M 2m37s\n366700K .......... .......... .......... .......... .......... 68% 1.17M 2m37s\n366750K .......... .......... .......... .......... .......... 68% 921K 2m37s\n366800K .......... .......... .......... .......... .......... 68% 1.22M 2m37s\n366850K .......... .......... .......... .......... .......... 68% 1.17M 2m37s\n366900K .......... .......... .......... .......... .......... 68% 1.16M 2m37s\n366950K .......... .......... .......... .......... .......... 69% 1.22M 2m37s\n367000K .......... .......... .......... .......... .......... 69% 1.20M 2m37s\n367050K .......... .......... .......... .......... .......... 69% 1.19M 2m37s\n367100K .......... .......... .......... .......... .......... 69% 1.17M 2m37s\n367150K .......... .......... .......... .......... .......... 69% 899K 2m37s\n367200K .......... .......... .......... .......... .......... 69% 1.18M 2m37s\n367250K .......... .......... .......... .......... .......... 69% 1.20M 2m37s\n367300K .......... .......... .......... .......... .......... 69% 1.22M 2m37s\n367350K .......... .......... .......... .......... .......... 69% 1.08M 2m37s\n367400K .......... .......... .......... .......... .......... 69% 1.31M 2m37s\n367450K .......... .......... .......... .......... .......... 69% 1.16M 2m37s\n367500K .......... .......... .......... .......... .......... 69% 1.18M 2m37s\n367550K .......... .......... .......... .......... .......... 69% 176K 2m37s\n367600K .......... .......... .......... .......... .......... 69% 19.7M 2m37s\n367650K .......... .......... .......... .......... .......... 69% 12.4M 2m36s\n367700K .......... .......... .......... .......... .......... 69% 240M 2m36s\n367750K .......... .......... .......... .......... .......... 69% 51.6M 2m36s\n367800K .......... .......... .......... .......... .......... 69% 309M 2m36s\n367850K .......... .......... .......... .......... .......... 69% 1.39M 2m36s\n367900K .......... .......... .......... .......... .......... 69% 1.08M 2m36s\n367950K .......... .......... .......... .......... .......... 69% 991K 2m36s\n368000K .......... .......... .......... .......... .......... 69% 1.18M 2m36s\n368050K .......... .......... .......... .......... .......... 69% 1.12M 2m36s\n368100K .......... .......... .......... .......... .......... 69% 1.32M 2m36s\n368150K .......... .......... .......... .......... .......... 69% 1.16M 2m36s\n368200K .......... .......... .......... .......... .......... 69% 1.19M 2m36s\n368250K .......... .......... .......... .......... .......... 69% 1.21M 2m36s\n368300K .......... .......... .......... .......... .......... 69% 1.17M 2m36s\n368350K .......... .......... .......... .......... .......... 69% 906K 2m36s\n368400K .......... .......... .......... .......... .......... 69% 1.15M 2m36s\n368450K .......... .......... .......... .......... .......... 69% 1.11M 2m36s\n368500K .......... .......... .......... .......... .......... 69% 1.30M 2m36s\n368550K .......... .......... .......... .......... .......... 69% 1.19M 2m36s\n368600K .......... .......... .......... .......... .......... 69% 1.16M 2m35s\n368650K .......... .......... .......... .......... .......... 69% 1.23M 2m35s\n368700K .......... .......... .......... .......... .......... 69% 1.18M 2m35s\n368750K .......... .......... .......... .......... .......... 69% 903K 2m35s\n368800K .......... .......... .......... .......... .......... 69% 1.19M 2m35s\n368850K .......... .......... .......... .......... .......... 69% 1.23M 2m35s\n368900K .......... .......... .......... .......... .......... 69% 1.17M 2m35s\n368950K .......... .......... .......... .......... .......... 69% 1.17M 2m35s\n369000K .......... .......... .......... .......... .......... 69% 1.21M 2m35s\n369050K .......... .......... .......... .......... .......... 69% 1.18M 2m35s\n369100K .......... .......... .......... .......... .......... 69% 1.19M 2m35s\n369150K .......... .......... .......... .......... .......... 69% 925K 2m35s\n369200K .......... .......... .......... .......... .......... 69% 1.17M 2m35s\n369250K .......... .......... .......... .......... .......... 69% 1.19M 2m35s\n369300K .......... .......... .......... .......... .......... 69% 1.18M 2m35s\n369350K .......... .......... .......... .......... .......... 69% 1.21M 2m35s\n369400K .......... .......... .......... .......... .......... 69% 1.19M 2m35s\n369450K .......... .......... .......... .......... .......... 69% 1.23M 2m35s\n369500K .......... .......... .......... .......... .......... 69% 1.16M 2m35s\n369550K .......... .......... .......... .......... .......... 69% 836K 2m35s\n369600K .......... .......... .......... .......... .......... 69% 1.32M 2m34s\n369650K .......... .......... .......... .......... .......... 69% 1.08M 2m34s\n369700K .......... .......... .......... .......... .......... 69% 1.32M 2m34s\n369750K .......... .......... .......... .......... .......... 69% 1.18M 2m34s\n369800K .......... .......... .......... .......... .......... 69% 1.18M 2m34s\n369850K .......... .......... .......... .......... .......... 69% 1.23M 2m34s\n369900K .......... .......... .......... .......... .......... 69% 1.11M 2m34s\n369950K .......... .......... .......... .......... .......... 69% 947K 2m34s\n370000K .......... .......... .......... .......... .......... 69% 1.15M 2m34s\n370050K .......... .......... .......... .......... .......... 69% 1.19M 2m34s\n370100K .......... .......... .......... .......... .......... 69% 1.18M 2m34s\n370150K .......... .......... .......... .......... .......... 69% 1.20M 2m34s\n370200K .......... .......... .......... .......... .......... 69% 1.16M 2m34s\n370250K .......... .......... .......... .......... .......... 69% 1.20M 2m34s\n370300K .......... .......... .......... .......... .......... 69% 1.25M 2m34s\n370350K .......... .......... .......... .......... .......... 69% 711K 2m34s\n370400K .......... .......... .......... .......... .......... 69% 1.79M 2m34s\n370450K .......... .......... .......... .......... .......... 69% 1.22M 2m34s\n370500K .......... .......... .......... .......... .......... 69% 1.16M 2m34s\n370550K .......... .......... .......... .......... .......... 69% 1.19M 2m34s\n370600K .......... .......... .......... .......... .......... 69% 1.22M 2m33s\n370650K .......... .......... .......... .......... .......... 69% 1.19M 2m33s\n370700K .......... .......... .......... .......... .......... 69% 1.18M 2m33s\n370750K .......... .......... .......... .......... .......... 69% 907K 2m33s\n370800K .......... .......... .......... .......... .......... 69% 1.21M 2m33s\n370850K .......... .......... .......... .......... .......... 69% 1.16M 2m33s\n370900K .......... .......... .......... .......... .......... 69% 1.20M 2m33s\n370950K .......... .......... .......... .......... .......... 69% 1.19M 2m33s\n371000K .......... .......... .......... .......... .......... 69% 1.18M 2m33s\n371050K .......... .......... .......... .......... .......... 69% 1.21M 2m33s\n371100K .......... .......... .......... .......... .......... 69% 1.20M 2m33s\n371150K .......... .......... .......... .......... .......... 69% 922K 2m33s\n371200K .......... .......... .......... .......... .......... 69% 1.19M 2m33s\n371250K .......... .......... .......... .......... .......... 69% 1.19M 2m33s\n371300K .......... .......... .......... .......... .......... 69% 1.19M 2m33s\n371350K .......... .......... .......... .......... .......... 69% 1.14M 2m33s\n371400K .......... .......... .......... .......... .......... 69% 1.16M 2m33s\n371450K .......... .......... .......... .......... .......... 69% 1.24M 2m33s\n371500K .......... .......... .......... .......... .......... 69% 1.21M 2m33s\n371550K .......... .......... .......... .......... .......... 69% 896K 2m33s\n371600K .......... .......... .......... .......... .......... 69% 1.18M 2m32s\n371650K .......... .......... .......... .......... .......... 69% 1.17M 2m32s\n371700K .......... .......... .......... .......... .......... 69% 1.20M 2m32s\n371750K .......... .......... .......... .......... .......... 69% 1.18M 2m32s\n371800K .......... .......... .......... .......... .......... 69% 1.21M 2m32s\n371850K .......... .......... .......... .......... .......... 69% 1.19M 2m32s\n371900K .......... .......... .......... .......... .......... 69% 1.11M 2m32s\n371950K .......... .......... .......... .......... .......... 69% 964K 2m32s\n372000K .......... .......... .......... .......... .......... 69% 1.14M 2m32s\n372050K .......... .......... .......... .......... .......... 69% 832K 2m32s\n372100K .......... .......... .......... .......... .......... 69% 2.09M 2m32s\n372150K .......... .......... .......... .......... .......... 69% 1.27M 2m32s\n372200K .......... .......... .......... .......... .......... 69% 1.19M 2m32s\n372250K .......... .......... .......... .......... .......... 69% 1.17M 2m32s\n372300K .......... .......... .......... .......... .......... 70% 1.24M 2m32s\n372350K .......... .......... .......... .......... .......... 70% 903K 2m32s\n372400K .......... .......... .......... .......... .......... 70% 1.18M 2m32s\n372450K .......... .......... .......... .......... .......... 70% 1.21M 2m32s\n372500K .......... .......... .......... .......... .......... 70% 1.19M 2m32s\n372550K .......... .......... .......... .......... .......... 70% 1.19M 2m32s\n372600K .......... .......... .......... .......... .......... 70% 1.20M 2m32s\n372650K .......... .......... .......... .......... .......... 70% 972K 2m31s\n372700K .......... .......... .......... .......... .......... 70% 1.58M 2m31s\n372750K .......... .......... .......... .......... .......... 70% 871K 2m31s\n372800K .......... .......... .......... .......... .......... 70% 1.23M 2m31s\n372850K .......... .......... .......... .......... .......... 70% 1.16M 2m31s\n372900K .......... .......... .......... .......... .......... 70% 1.24M 2m31s\n372950K .......... .......... .......... .......... .......... 70% 1.15M 2m31s\n373000K .......... .......... .......... .......... .......... 70% 1.12M 2m31s\n373050K .......... .......... .......... .......... .......... 70% 1.28M 2m31s\n373100K .......... .......... .......... .......... .......... 70% 1.20M 2m31s\n373150K .......... .......... .......... .......... .......... 70% 898K 2m31s\n373200K .......... .......... .......... .......... .......... 70% 1.18M 2m31s\n373250K .......... .......... .......... .......... .......... 70% 1.24M 2m31s\n373300K .......... .......... .......... .......... .......... 70% 1.16M 2m31s\n373350K .......... .......... .......... .......... .......... 70% 1.19M 2m31s\n373400K .......... .......... .......... .......... .......... 70% 1.18M 2m31s\n373450K .......... .......... .......... .......... .......... 70% 1.11M 2m31s\n373500K .......... .......... .......... .......... .......... 70% 1.31M 2m31s\n373550K .......... .......... .......... .......... .......... 70% 891K 2m31s\n373600K .......... .......... .......... .......... .......... 70% 1.18M 2m31s\n373650K .......... .......... .......... .......... .......... 70% 1.20M 2m30s\n373700K .......... .......... .......... .......... .......... 70% 1.15M 2m30s\n373750K .......... .......... .......... .......... .......... 70% 1.22M 2m30s\n373800K .......... .......... .......... .......... .......... 70% 1.19M 2m30s\n373850K .......... .......... .......... .......... .......... 70% 1.18M 2m30s\n373900K .......... .......... .......... .......... .......... 70% 1.17M 2m30s\n373950K .......... .......... .......... .......... .......... 70% 931K 2m30s\n374000K .......... .......... .......... .......... .......... 70% 1.20M 2m30s\n374050K .......... .......... .......... .......... .......... 70% 1.19M 2m30s\n374100K .......... .......... .......... .......... .......... 70% 1.17M 2m30s\n374150K .......... .......... .......... .......... .......... 70% 1.18M 2m30s\n374200K .......... .......... .......... .......... .......... 70% 1.19M 2m30s\n374250K .......... .......... .......... .......... .......... 70% 1.21M 2m30s\n374300K .......... .......... .......... .......... .......... 70% 1.17M 2m30s\n374350K .......... .......... .......... .......... .......... 70% 914K 2m30s\n374400K .......... .......... .......... .......... .......... 70% 1.19M 2m30s\n374450K .......... .......... .......... .......... .......... 70% 1.19M 2m30s\n374500K .......... .......... .......... .......... .......... 70% 1.19M 2m30s\n374550K .......... .......... .......... .......... .......... 70% 1.15M 2m30s\n374600K .......... .......... .......... .......... .......... 70% 1.22M 2m30s\n374650K .......... .......... .......... .......... .......... 70% 1.19M 2m29s\n374700K .......... .......... .......... .......... .......... 70% 1.16M 2m29s\n374750K .......... .......... .......... .......... .......... 70% 913K 2m29s\n374800K .......... .......... .......... .......... .......... 70% 148K 2m29s\n374850K .......... .......... .......... .......... .......... 70% 73.9M 2m29s\n374900K .......... .......... .......... .......... .......... 70% 169M 2m29s\n374950K .......... .......... .......... .......... .......... 70% 499K 2m29s\n375000K .......... .......... .......... .......... .......... 70% 73.1M 2m29s\n375050K .......... .......... .......... .......... .......... 70% 139M 2m29s\n375100K .......... .......... .......... .......... .......... 70% 1011K 2m29s\n375150K .......... .......... .......... .......... .......... 70% 952K 2m29s\n375200K .......... .......... .......... .......... .......... 70% 1.19M 2m29s\n375250K .......... .......... .......... .......... .......... 70% 1.03M 2m29s\n375300K .......... .......... .......... .......... .......... 70% 1.39M 2m29s\n375350K .......... .......... .......... .......... .......... 70% 1.20M 2m29s\n375400K .......... .......... .......... .......... .......... 70% 1.14M 2m29s\n375450K .......... .......... .......... .......... .......... 70% 1.24M 2m29s\n375500K .......... .......... .......... .......... .......... 70% 1.16M 2m29s\n375550K .......... .......... .......... .......... .......... 70% 907K 2m29s\n375600K .......... .......... .......... .......... .......... 70% 1.19M 2m29s\n375650K .......... .......... .......... .......... .......... 70% 1.10M 2m29s\n375700K .......... .......... .......... .......... .......... 70% 1.19M 2m29s\n375750K .......... .......... .......... .......... .......... 70% 1.12M 2m28s\n375800K .......... .......... .......... .......... .......... 70% 1.29M 2m28s\n375850K .......... .......... .......... .......... .......... 70% 1.17M 2m28s\n375900K .......... .......... .......... .......... .......... 70% 1.18M 2m28s\n375950K .......... .......... .......... .......... .......... 70% 898K 2m28s\n376000K .......... .......... .......... .......... .......... 70% 1.20M 2m28s\n376050K .......... .......... .......... .......... .......... 70% 1.16M 2m28s\n376100K .......... .......... .......... .......... .......... 70% 1.22M 2m28s\n376150K .......... .......... .......... .......... .......... 70% 1.19M 2m28s\n376200K .......... .......... .......... .......... .......... 70% 1.21M 2m28s\n376250K .......... .......... .......... .......... .......... 70% 1.18M 2m28s\n376300K .......... .......... .......... .......... .......... 70% 1.20M 2m28s\n376350K .......... .......... .......... .......... .......... 70% 196K 2m28s\n376400K .......... .......... .......... .......... .......... 70% 63.1M 2m28s\n376450K .......... .......... .......... .......... .......... 70% 13.0M 2m28s\n376500K .......... .......... .......... .......... .......... 70% 8.55M 2m28s\n376550K .......... .......... .......... .......... .......... 70% 458K 2m28s\n376600K .......... .......... .......... .......... .......... 70% 290M 2m28s\n376650K .......... .......... .......... .......... .......... 70% 1.43M 2m28s\n376700K .......... .......... .......... .......... .......... 70% 12.1M 2m28s\n376750K .......... .......... .......... .......... .......... 70% 924K 2m28s\n376800K .......... .......... .......... .......... .......... 70% 198K 2m28s\n376850K .......... .......... .......... .......... .......... 70% 48.9M 2m27s\n376900K .......... .......... .......... .......... .......... 70% 351M 2m27s\n376950K .......... .......... .......... .......... .......... 70% 338M 2m27s\n377000K .......... .......... .......... .......... .......... 70% 7.24M 2m27s\n377050K .......... .......... .......... .......... .......... 70% 31.7M 2m27s\n377100K .......... .......... .......... .......... .......... 70% 1.13M 2m27s\n377150K .......... .......... .......... .......... .......... 70% 934K 2m27s\n377200K .......... .......... .......... .......... .......... 70% 1.15M 2m27s\n377250K .......... .......... .......... .......... .......... 70% 1.19M 2m27s\n377300K .......... .......... .......... .......... .......... 70% 1.23M 2m27s\n377350K .......... .......... .......... .......... .......... 70% 1.19M 2m27s\n377400K .......... .......... .......... .......... .......... 70% 1.18M 2m27s\n377450K .......... .......... .......... .......... .......... 70% 1.19M 2m27s\n377500K .......... .......... .......... .......... .......... 70% 1.22M 2m27s\n377550K .......... .......... .......... .......... .......... 70% 858K 2m27s\n377600K .......... .......... .......... .......... .......... 71% 48.6K 2m27s\n377650K .......... .......... .......... .......... .......... 71% 1.35M 2m27s\n377700K .......... .......... .......... .......... .......... 71% 1.19M 2m27s\n377750K .......... .......... .......... .......... .......... 71% 201K 2m27s\n377800K .......... .......... .......... .......... .......... 71% 14.6M 2m27s\n377850K .......... .......... .......... .......... .......... 71% 12.1M 2m27s\n377900K .......... .......... .......... .......... .......... 71% 21.5M 2m27s\n377950K .......... .......... .......... .......... .......... 71% 16.2M 2m27s\n378000K .......... .......... .......... .......... .......... 71% 468M 2m27s\n378050K .......... .......... .......... .......... .......... 71% 819K 2m27s\n378100K .......... .......... .......... .......... .......... 71% 1.18M 2m27s\n378150K .......... .......... .......... .......... .......... 71% 1.15M 2m27s\n378200K .......... .......... .......... .......... .......... 71% 1.21M 2m26s\n378250K .......... .......... .......... .......... .......... 71% 1.24M 2m26s\n378300K .......... .......... .......... .......... .......... 71% 1.16M 2m26s\n378350K .......... .......... .......... .......... .......... 71% 925K 2m26s\n378400K .......... .......... .......... .......... .......... 71% 1.21M 2m26s\n378450K .......... .......... .......... .......... .......... 71% 1.19M 2m26s\n378500K .......... .......... .......... .......... .......... 71% 1.19M 2m26s\n378550K .......... .......... .......... .......... .......... 71% 1.09M 2m26s\n378600K .......... .......... .......... .......... .......... 71% 1.27M 2m26s\n378650K .......... .......... .......... .......... .......... 71% 1.08M 2m26s\n378700K .......... .......... .......... .......... .......... 71% 1.28M 2m26s\n378750K .......... .......... .......... .......... .......... 71% 953K 2m26s\n378800K .......... .......... .......... .......... .......... 71% 1.16M 2m26s\n378850K .......... .......... .......... .......... .......... 71% 1.21M 2m26s\n378900K .......... .......... .......... .......... .......... 71% 1.19M 2m26s\n378950K .......... .......... .......... .......... .......... 71% 1.19M 2m26s\n379000K .......... .......... .......... .......... .......... 71% 1.20M 2m26s\n379050K .......... .......... .......... .......... .......... 71% 1.16M 2m26s\n379100K .......... .......... .......... .......... .......... 71% 1.20M 2m26s\n379150K .......... .......... .......... .......... .......... 71% 901K 2m26s\n379200K .......... .......... .......... .......... .......... 71% 1.20M 2m25s\n379250K .......... .......... .......... .......... .......... 71% 1.08M 2m25s\n379300K .......... .......... .......... .......... .......... 71% 1.26M 2m25s\n379350K .......... .......... .......... .......... .......... 71% 1.25M 2m25s\n379400K .......... .......... .......... .......... .......... 71% 1.17M 2m25s\n379450K .......... .......... .......... .......... .......... 71% 1.18M 2m25s\n379500K .......... .......... .......... .......... .......... 71% 1.16M 2m25s\n379550K .......... .......... .......... .......... .......... 71% 936K 2m25s\n379600K .......... .......... .......... .......... .......... 71% 680K 2m25s\n379650K .......... .......... .......... .......... .......... 71% 2.45M 2m25s\n379700K .......... .......... .......... .......... .......... 71% 154K 2m25s\n379750K .......... .......... .......... .......... .......... 71% 352M 2m25s\n379800K .......... .......... .......... .......... .......... 71% 532M 2m25s\n379850K .......... .......... .......... .......... .......... 71% 1.49M 2m25s\n379900K .......... .......... .......... .......... .......... 71% 371M 2m25s\n379950K .......... .......... .......... .......... .......... 71% 1.43M 2m25s\n380000K .......... .......... .......... .......... .......... 71% 1.19M 2m25s\n380050K .......... .......... .......... .......... .......... 71% 1.22M 2m25s\n380100K .......... .......... .......... .......... .......... 71% 1.16M 2m25s\n380150K .......... .......... .......... .......... .......... 71% 1.21M 2m25s\n380200K .......... .......... .......... .......... .......... 71% 1.18M 2m25s\n380250K .......... .......... .......... .......... .......... 71% 1.18M 2m25s\n380300K .......... .......... .......... .......... .......... 71% 1.16M 2m24s\n380350K .......... .......... .......... .......... .......... 71% 938K 2m24s\n380400K .......... .......... .......... .......... .......... 71% 1.05M 2m24s\n380450K .......... .......... .......... .......... .......... 71% 1.37M 2m24s\n380500K .......... .......... .......... .......... .......... 71% 1.16M 2m24s\n380550K .......... .......... .......... .......... .......... 71% 1.22M 2m24s\n380600K .......... .......... .......... .......... .......... 71% 1.18M 2m24s\n380650K .......... .......... .......... .......... .......... 71% 1.13M 2m24s\n380700K .......... .......... .......... .......... .......... 71% 1.26M 2m24s\n380750K .......... .......... .......... .......... .......... 71% 200K 2m24s\n380800K .......... .......... .......... .......... .......... 71% 15.5M 2m24s\n380850K .......... .......... .......... .......... .......... 71% 162M 2m24s\n380900K .......... .......... .......... .......... .......... 71% 11.2M 2m24s\n380950K .......... .......... .......... .......... .......... 71% 5.38M 2m24s\n381000K .......... .......... .......... .......... .......... 71% 4.86M 2m24s\n381050K .......... .......... .......... .......... .......... 71% 1.30M 2m24s\n381100K .......... .......... .......... .......... .......... 71% 1.16M 2m24s\n381150K .......... .......... .......... .......... .......... 71% 918K 2m24s\n381200K .......... .......... .......... .......... .......... 71% 1.15M 2m24s\n381250K .......... .......... .......... .......... .......... 71% 1.21M 2m24s\n381300K .......... .......... .......... .......... .......... 71% 1.17M 2m23s\n381350K .......... .......... .......... .......... .......... 71% 1.24M 2m23s\n381400K .......... .......... .......... .......... .......... 71% 1.18M 2m23s\n381450K .......... .......... .......... .......... .......... 71% 1.15M 2m23s\n381500K .......... .......... .......... .......... .......... 71% 1.21M 2m23s\n381550K .......... .......... .......... .......... .......... 71% 927K 2m23s\n381600K .......... .......... .......... .......... .......... 71% 193K 2m23s\n381650K .......... .......... .......... .......... .......... 71% 22.1M 2m23s\n381700K .......... .......... .......... .......... .......... 71% 69.0M 2m23s\n381750K .......... .......... .......... .......... .......... 71% 58.1M 2m23s\n381800K .......... .......... .......... .......... .......... 71% 76.8M 2m23s\n381850K .......... .......... .......... .......... .......... 71% 127M 2m23s\n381900K .......... .......... .......... .......... .......... 71% 883K 2m23s\n381950K .......... .......... .......... .......... .......... 71% 1002K 2m23s\n382000K .......... .......... .......... .......... .......... 71% 1.15M 2m23s\n382050K .......... .......... .......... .......... .......... 71% 1.19M 2m23s\n382100K .......... .......... .......... .......... .......... 71% 1.14M 2m23s\n382150K .......... .......... .......... .......... .......... 71% 1.26M 2m23s\n382200K .......... .......... .......... .......... .......... 71% 1.11M 2m23s\n382250K .......... .......... .......... .......... .......... 71% 1.26M 2m23s\n382300K .......... .......... .......... .......... .......... 71% 1.22M 2m22s\n382350K .......... .......... .......... .......... .......... 71% 843K 2m22s\n382400K .......... .......... .......... .......... .......... 71% 1.28M 2m22s\n382450K .......... .......... .......... .......... .......... 71% 1.18M 2m22s\n382500K .......... .......... .......... .......... .......... 71% 1.16M 2m22s\n382550K .......... .......... .......... .......... .......... 71% 1.23M 2m22s\n382600K .......... .......... .......... .......... .......... 71% 1.16M 2m22s\n382650K .......... .......... .......... .......... .......... 71% 1.21M 2m22s\n382700K .......... .......... .......... .......... .......... 71% 1.12M 2m22s\n382750K .......... .......... .......... .......... .......... 71% 960K 2m22s\n382800K .......... .......... .......... .......... .......... 71% 1.19M 2m22s\n382850K .......... .......... .......... .......... .......... 71% 1.22M 2m22s\n382900K .......... .......... .......... .......... .......... 72% 1.16M 2m22s\n382950K .......... .......... .......... .......... .......... 72% 1.18M 2m22s\n383000K .......... .......... .......... .......... .......... 72% 1.21M 2m22s\n383050K .......... .......... .......... .......... .......... 72% 1.15M 2m22s\n383100K .......... .......... .......... .......... .......... 72% 1.21M 2m22s\n383150K .......... .......... .......... .......... .......... 72% 924K 2m22s\n383200K .......... .......... .......... .......... .......... 72% 1.18M 2m22s\n383250K .......... .......... .......... .......... .......... 72% 1.19M 2m22s\n383300K .......... .......... .......... .......... .......... 72% 1.17M 2m22s\n383350K .......... .......... .......... .......... .......... 72% 1.18M 2m21s\n383400K .......... .......... .......... .......... .......... 72% 1.21M 2m21s\n383450K .......... .......... .......... .......... .......... 72% 1.20M 2m21s\n383500K .......... .......... .......... .......... .......... 72% 1.18M 2m21s\n383550K .......... .......... .......... .......... .......... 72% 922K 2m21s\n383600K .......... .......... .......... .......... .......... 72% 1.16M 2m21s\n383650K .......... .......... .......... .......... .......... 72% 1.20M 2m21s\n383700K .......... .......... .......... .......... .......... 72% 1.18M 2m21s\n383750K .......... .......... .......... .......... .......... 72% 1.22M 2m21s\n383800K .......... .......... .......... .......... .......... 72% 1.17M 2m21s\n383850K .......... .......... .......... .......... .......... 72% 1.20M 2m21s\n383900K .......... .......... .......... .......... .......... 72% 1.18M 2m21s\n383950K .......... .......... .......... .......... .......... 72% 919K 2m21s\n384000K .......... .......... .......... .......... .......... 72% 1.19M 2m21s\n384050K .......... .......... .......... .......... .......... 72% 1.20M 2m21s\n384100K .......... .......... .......... .......... .......... 72% 1.15M 2m21s\n384150K .......... .......... .......... .......... .......... 72% 1.22M 2m21s\n384200K .......... .......... .......... .......... .......... 72% 1.22M 2m21s\n384250K .......... .......... .......... .......... .......... 72% 1.14M 2m21s\n384300K .......... .......... .......... .......... .......... 72% 1.18M 2m21s\n384350K .......... .......... .......... .......... .......... 72% 899K 2m20s\n384400K .......... .......... .......... .......... .......... 72% 1.20M 2m20s\n384450K .......... .......... .......... .......... .......... 72% 1.22M 2m20s\n384500K .......... .......... .......... .......... .......... 72% 1.16M 2m20s\n384550K .......... .......... .......... .......... .......... 72% 1.19M 2m20s\n384600K .......... .......... .......... .......... .......... 72% 1.21M 2m20s\n384650K .......... .......... .......... .......... .......... 72% 1.18M 2m20s\n384700K .......... .......... .......... .......... .......... 72% 1.19M 2m20s\n384750K .......... .......... .......... .......... .......... 72% 910K 2m20s\n384800K .......... .......... .......... .......... .......... 72% 1.22M 2m20s\n384850K .......... .......... .......... .......... .......... 72% 1.17M 2m20s\n384900K .......... .......... .......... .......... .......... 72% 1.09M 2m20s\n384950K .......... .......... .......... .......... .......... 72% 1.29M 2m20s\n385000K .......... .......... .......... .......... .......... 72% 1.20M 2m20s\n385050K .......... .......... .......... .......... .......... 72% 1.18M 2m20s\n385100K .......... .......... .......... .......... .......... 72% 1.19M 2m20s\n385150K .......... .......... .......... .......... .......... 72% 920K 2m20s\n385200K .......... .......... .......... .......... .......... 72% 1.15M 2m20s\n385250K .......... .......... .......... .......... .......... 72% 1.21M 2m20s\n385300K .......... .......... .......... .......... .......... 72% 1.23M 2m20s\n385350K .......... .......... .......... .......... .......... 72% 1.17M 2m19s\n385400K .......... .......... .......... .......... .......... 72% 1.20M 2m19s\n385450K .......... .......... .......... .......... .......... 72% 1.10M 2m19s\n385500K .......... .......... .......... .......... .......... 72% 1.28M 2m19s\n385550K .......... .......... .......... .......... .......... 72% 897K 2m19s\n385600K .......... .......... .......... .......... .......... 72% 1.21M 2m19s\n385650K .......... .......... .......... .......... .......... 72% 1.19M 2m19s\n385700K .......... .......... .......... .......... .......... 72% 1.17M 2m19s\n385750K .......... .......... .......... .......... .......... 72% 1.20M 2m19s\n385800K .......... .......... .......... .......... .......... 72% 1.17M 2m19s\n385850K .......... .......... .......... .......... .......... 72% 1.12M 2m19s\n385900K .......... .......... .......... .......... .......... 72% 1.27M 2m19s\n385950K .......... .......... .......... .......... .......... 72% 897K 2m19s\n386000K .......... .......... .......... .......... .......... 72% 1.23M 2m19s\n386050K .......... .......... .......... .......... .......... 72% 1.18M 2m19s\n386100K .......... .......... .......... .......... .......... 72% 1.17M 2m19s\n386150K .......... .......... .......... .......... .......... 72% 1.23M 2m19s\n386200K .......... .......... .......... .......... .......... 72% 1.12M 2m19s\n386250K .......... .......... .......... .......... .......... 72% 1.20M 2m19s\n386300K .......... .......... .......... .......... .......... 72% 1.18M 2m19s\n386350K .......... .......... .......... .......... .......... 72% 550K 2m19s\n386400K .......... .......... .......... .......... .......... 72% 7.89M 2m18s\n386450K .......... .......... .......... .......... .......... 72% 1.17M 2m18s\n386500K .......... .......... .......... .......... .......... 72% 1.24M 2m18s\n386550K .......... .......... .......... .......... .......... 72% 1.17M 2m18s\n386600K .......... .......... .......... .......... .......... 72% 193K 2m18s\n386650K .......... .......... .......... .......... .......... 72% 15.9M 2m18s\n386700K .......... .......... .......... .......... .......... 72% 13.8M 2m18s\n386750K .......... .......... .......... .......... .......... 72% 404K 2m18s\n386800K .......... .......... .......... .......... .......... 72% 170M 2m18s\n386850K .......... .......... .......... .......... .......... 72% 36.0M 2m18s\n386900K .......... .......... .......... .......... .......... 72% 123M 2m18s\n386950K .......... .......... .......... .......... .......... 72% 1.24M 2m18s\n387000K .......... .......... .......... .......... .......... 72% 1.26M 2m18s\n387050K .......... .......... .......... .......... .......... 72% 1.15M 2m18s\n387100K .......... .......... .......... .......... .......... 72% 1.19M 2m18s\n387150K .......... .......... .......... .......... .......... 72% 879K 2m18s\n387200K .......... .......... .......... .......... .......... 72% 1.33M 2m18s\n387250K .......... .......... .......... .......... .......... 72% 1.07M 2m18s\n387300K .......... .......... .......... .......... .......... 72% 1.21M 2m18s\n387350K .......... .......... .......... .......... .......... 72% 200K 2m18s\n387400K .......... .......... .......... .......... .......... 72% 135M 2m18s\n387450K .......... .......... .......... .......... .......... 72% 319M 2m17s\n387500K .......... .......... .......... .......... .......... 72% 22.8M 2m17s\n387550K .......... .......... .......... .......... .......... 72% 9.50M 2m17s\n387600K .......... .......... .......... .......... .......... 72% 4.70M 2m17s\n387650K .......... .......... .......... .......... .......... 72% 990K 2m17s\n387700K .......... .......... .......... .......... .......... 72% 1.18M 2m17s\n387750K .......... .......... .......... .......... .......... 72% 1.21M 2m17s\n387800K .......... .......... .......... .......... .......... 72% 1.18M 2m17s\n387850K .......... .......... .......... .......... .......... 72% 1.19M 2m17s\n387900K .......... .......... .......... .......... .......... 72% 1.13M 2m17s\n387950K .......... .......... .......... .......... .......... 72% 931K 2m17s\n388000K .......... .......... .......... .......... .......... 72% 1.19M 2m17s\n388050K .......... .......... .......... .......... .......... 72% 1.24M 2m17s\n388100K .......... .......... .......... .......... .......... 72% 1.17M 2m17s\n388150K .......... .......... .......... .......... .......... 72% 1.19M 2m17s\n388200K .......... .......... .......... .......... .......... 72% 1.16M 2m17s\n388250K .......... .......... .......... .......... .......... 73% 1.14M 2m17s\n388300K .......... .......... .......... .......... .......... 73% 1.26M 2m17s\n388350K .......... .......... .......... .......... .......... 73% 936K 2m17s\n388400K .......... .......... .......... .......... .......... 73% 1.17M 2m17s\n388450K .......... .......... .......... .......... .......... 73% 1.19M 2m16s\n388500K .......... .......... .......... .......... .......... 73% 1.18M 2m16s\n388550K .......... .......... .......... .......... .......... 73% 1.18M 2m16s\n388600K .......... .......... .......... .......... .......... 73% 1.18M 2m16s\n388650K .......... .......... .......... .......... .......... 73% 1.22M 2m16s\n388700K .......... .......... .......... .......... .......... 73% 1.19M 2m16s\n388750K .......... .......... .......... .......... .......... 73% 196K 2m16s\n388800K .......... .......... .......... .......... .......... 73% 101M 2m16s\n388850K .......... .......... .......... .......... .......... 73% 105M 2m16s\n388900K .......... .......... .......... .......... .......... 73% 142M 2m16s\n388950K .......... .......... .......... .......... .......... 73% 36.7M 2m16s\n389000K .......... .......... .......... .......... .......... 73% 1.41M 2m16s\n389050K .......... .......... .......... .......... .......... 73% 1.17M 2m16s\n389100K .......... .......... .......... .......... .......... 73% 1.23M 2m16s\n389150K .......... .......... .......... .......... .......... 73% 900K 2m16s\n389200K .......... .......... .......... .......... .......... 73% 1.17M 2m16s\n389250K .......... .......... .......... .......... .......... 73% 1.26M 2m16s\n389300K .......... .......... .......... .......... .......... 73% 1.16M 2m16s\n389350K .......... .......... .......... .......... .......... 73% 1.16M 2m16s\n389400K .......... .......... .......... .......... .......... 73% 1.20M 2m16s\n389450K .......... .......... .......... .......... .......... 73% 1.19M 2m15s\n389500K .......... .......... .......... .......... .......... 73% 1.19M 2m15s\n389550K .......... .......... .......... .......... .......... 73% 896K 2m15s\n389600K .......... .......... .......... .......... .......... 73% 1.20M 2m15s\n389650K .......... .......... .......... .......... .......... 73% 1.13M 2m15s\n389700K .......... .......... .......... .......... .......... 73% 1.27M 2m15s\n389750K .......... .......... .......... .......... .......... 73% 1.19M 2m15s\n389800K .......... .......... .......... .......... .......... 73% 1.15M 2m15s\n389850K .......... .......... .......... .......... .......... 73% 1.21M 2m15s\n389900K .......... .......... .......... .......... .......... 73% 1.19M 2m15s\n389950K .......... .......... .......... .......... .......... 73% 887K 2m15s\n390000K .......... .......... .......... .......... .......... 73% 1.09M 2m15s\n390050K .......... .......... .......... .......... .......... 73% 1.38M 2m15s\n390100K .......... .......... .......... .......... .......... 73% 1.19M 2m15s\n390150K .......... .......... .......... .......... .......... 73% 1.08M 2m15s\n390200K .......... .......... .......... .......... .......... 73% 1.33M 2m15s\n390250K .......... .......... .......... .......... .......... 73% 1.15M 2m15s\n390300K .......... .......... .......... .......... .......... 73% 1.22M 2m15s\n390350K .......... .......... .......... .......... .......... 73% 916K 2m15s\n390400K .......... .......... .......... .......... .......... 73% 1.22M 2m15s\n390450K .......... .......... .......... .......... .......... 73% 1.17M 2m14s\n390500K .......... .......... .......... .......... .......... 73% 1.15M 2m14s\n390550K .......... .......... .......... .......... .......... 73% 1.23M 2m14s\n390600K .......... .......... .......... .......... .......... 73% 1.13M 2m14s\n390650K .......... .......... .......... .......... .......... 73% 1.26M 2m14s\n390700K .......... .......... .......... .......... .......... 73% 1.17M 2m14s\n390750K .......... .......... .......... .......... .......... 73% 887K 2m14s\n390800K .......... .......... .......... .......... .......... 73% 1.17M 2m14s\n390850K .......... .......... .......... .......... .......... 73% 1.21M 2m14s\n390900K .......... .......... .......... .......... .......... 73% 1.17M 2m14s\n390950K .......... .......... .......... .......... .......... 73% 1.17M 2m14s\n391000K .......... .......... .......... .......... .......... 73% 1.14M 2m14s\n391050K .......... .......... .......... .......... .......... 73% 1.23M 2m14s\n391100K .......... .......... .......... .......... .......... 73% 1.19M 2m14s\n391150K .......... .......... .......... .......... .......... 73% 919K 2m14s\n391200K .......... .......... .......... .......... .......... 73% 1.14M 2m14s\n391250K .......... .......... .......... .......... .......... 73% 1.24M 2m14s\n391300K .......... .......... .......... .......... .......... 73% 1.18M 2m14s\n391350K .......... .......... .......... .......... .......... 73% 1.17M 2m14s\n391400K .......... .......... .......... .......... .......... 73% 1.19M 2m14s\n391450K .......... .......... .......... .......... .......... 73% 1.18M 2m14s\n391500K .......... .......... .......... .......... .......... 73% 1.11M 2m13s\n391550K .......... .......... .......... .......... .......... 73% 969K 2m13s\n391600K .......... .......... .......... .......... .......... 73% 1.18M 2m13s\n391650K .......... .......... .......... .......... .......... 73% 1.20M 2m13s\n391700K .......... .......... .......... .......... .......... 73% 1.20M 2m13s\n391750K .......... .......... .......... .......... .......... 73% 1.18M 2m13s\n391800K .......... .......... .......... .......... .......... 73% 1.22M 2m13s\n391850K .......... .......... .......... .......... .......... 73% 1.13M 2m13s\n391900K .......... .......... .......... .......... .......... 73% 1.23M 2m13s\n391950K .......... .......... .......... .......... .......... 73% 899K 2m13s\n392000K .......... .......... .......... .......... .......... 73% 1.21M 2m13s\n392050K .......... .......... .......... .......... .......... 73% 1.15M 2m13s\n392100K .......... .......... .......... .......... .......... 73% 1.20M 2m13s\n392150K .......... .......... .......... .......... .......... 73% 1.14M 2m13s\n392200K .......... .......... .......... .......... .......... 73% 1.22M 2m13s\n392250K .......... .......... .......... .......... .......... 73% 1.22M 2m13s\n392300K .......... .......... .......... .......... .......... 73% 1.22M 2m13s\n392350K .......... .......... .......... .......... .......... 73% 916K 2m13s\n392400K .......... .......... .......... .......... .......... 73% 1.19M 2m13s\n392450K .......... .......... .......... .......... .......... 73% 1.16M 2m13s\n392500K .......... .......... .......... .......... .......... 73% 1.17M 2m12s\n392550K .......... .......... .......... .......... .......... 73% 1.18M 2m12s\n392600K .......... .......... .......... .......... .......... 73% 1.19M 2m12s\n392650K .......... .......... .......... .......... .......... 73% 1.19M 2m12s\n392700K .......... .......... .......... .......... .......... 73% 1.22M 2m12s\n392750K .......... .......... .......... .......... .......... 73% 896K 2m12s\n392800K .......... .......... .......... .......... .......... 73% 1.21M 2m12s\n392850K .......... .......... .......... .......... .......... 73% 1.05M 2m12s\n392900K .......... .......... .......... .......... .......... 73% 1.22M 2m12s\n392950K .......... .......... .......... .......... .......... 73% 1.26M 2m12s\n393000K .......... .......... .......... .......... .......... 73% 1.19M 2m12s\n393050K .......... .......... .......... .......... .......... 73% 1.23M 2m12s\n393100K .......... .......... .......... .......... .......... 73% 1.10M 2m12s\n393150K .......... .......... .......... .......... .......... 73% 962K 2m12s\n393200K .......... .......... .......... .......... .......... 73% 1.15M 2m12s\n393250K .......... .......... .......... .......... .......... 73% 1.20M 2m12s\n393300K .......... .......... .......... .......... .......... 73% 1.19M 2m12s\n393350K .......... .......... .......... .......... .......... 73% 1.17M 2m12s\n393400K .......... .......... .......... .......... .......... 73% 1.21M 2m12s\n393450K .......... .......... .......... .......... .......... 73% 1.09M 2m12s\n393500K .......... .......... .......... .......... .......... 73% 1.33M 2m11s\n393550K .......... .......... .......... .......... .......... 74% 932K 2m11s\n393600K .......... .......... .......... .......... .......... 74% 1.16M 2m11s\n393650K .......... .......... .......... .......... .......... 74% 1.18M 2m11s\n393700K .......... .......... .......... .......... .......... 74% 1.21M 2m11s\n393750K .......... .......... .......... .......... .......... 74% 1.20M 2m11s\n393800K .......... .......... .......... .......... .......... 74% 1.18M 2m11s\n393850K .......... .......... .......... .......... .......... 74% 1.18M 2m11s\n393900K .......... .......... .......... .......... .......... 74% 1.16M 2m11s\n393950K .......... .......... .......... .......... .......... 74% 916K 2m11s\n394000K .......... .......... .......... .......... .......... 74% 1.19M 2m11s\n394050K .......... .......... .......... .......... .......... 74% 1.15M 2m11s\n394100K .......... .......... .......... .......... .......... 74% 1.22M 2m11s\n394150K .......... .......... .......... .......... .......... 74% 1.18M 2m11s\n394200K .......... .......... .......... .......... .......... 74% 1.17M 2m11s\n394250K .......... .......... .......... .......... .......... 74% 1.17M 2m11s\n394300K .......... .......... .......... .......... .......... 74% 1.22M 2m11s\n394350K .......... .......... .......... .......... .......... 74% 916K 2m11s\n394400K .......... .......... .......... .......... .......... 74% 1.18M 2m11s\n394450K .......... .......... .......... .......... .......... 74% 1.19M 2m11s\n394500K .......... .......... .......... .......... .......... 74% 1.16M 2m11s\n394550K .......... .......... .......... .......... .......... 74% 1.20M 2m10s\n394600K .......... .......... .......... .......... .......... 74% 1.20M 2m10s\n394650K .......... .......... .......... .......... .......... 74% 1.18M 2m10s\n394700K .......... .......... .......... .......... .......... 74% 1.23M 2m10s\n394750K .......... .......... .......... .......... .......... 74% 907K 2m10s\n394800K .......... .......... .......... .......... .......... 74% 1.17M 2m10s\n394850K .......... .......... .......... .......... .......... 74% 1.19M 2m10s\n394900K .......... .......... .......... .......... .......... 74% 1.15M 2m10s\n394950K .......... .......... .......... .......... .......... 74% 1.24M 2m10s\n395000K .......... .......... .......... .......... .......... 74% 1.20M 2m10s\n395050K .......... .......... .......... .......... .......... 74% 1.17M 2m10s\n395100K .......... .......... .......... .......... .......... 74% 1.19M 2m10s\n395150K .......... .......... .......... .......... .......... 74% 893K 2m10s\n395200K .......... .......... .......... .......... .......... 74% 1.20M 2m10s\n395250K .......... .......... .......... .......... .......... 74% 1.20M 2m10s\n395300K .......... .......... .......... .......... .......... 74% 1.20M 2m10s\n395350K .......... .......... .......... .......... .......... 74% 1.17M 2m10s\n395400K .......... .......... .......... .......... .......... 74% 1.15M 2m10s\n395450K .......... .......... .......... .......... .......... 74% 1.20M 2m10s\n395500K .......... .......... .......... .......... .......... 74% 1.23M 2m10s\n395550K .......... .......... .......... .......... .......... 74% 912K 2m9s\n395600K .......... .......... .......... .......... .......... 74% 1.21M 2m9s\n395650K .......... .......... .......... .......... .......... 74% 1.20M 2m9s\n395700K .......... .......... .......... .......... .......... 74% 1.17M 2m9s\n395750K .......... .......... .......... .......... .......... 74% 1.17M 2m9s\n395800K .......... .......... .......... .......... .......... 74% 1.19M 2m9s\n395850K .......... .......... .......... .......... .......... 74% 1.21M 2m9s\n395900K .......... .......... .......... .......... .......... 74% 1.20M 2m9s\n395950K .......... .......... .......... .......... .......... 74% 162K 2m9s\n396000K .......... .......... .......... .......... .......... 74% 147M 2m9s\n396050K .......... .......... .......... .......... .......... 74% 1.46M 2m9s\n396100K .......... .......... .......... .......... .......... 74% 148M 2m9s\n396150K .......... .......... .......... .......... .......... 74% 256M 2m9s\n396200K .......... .......... .......... .......... .......... 74% 936K 2m9s\n396250K .......... .......... .......... .......... .......... 74% 1.25M 2m9s\n396300K .......... .......... .......... .......... .......... 74% 1.19M 2m9s\n396350K .......... .......... .......... .......... .......... 74% 913K 2m9s\n396400K .......... .......... .......... .......... .......... 74% 1.20M 2m9s\n396450K .......... .......... .......... .......... .......... 74% 1.22M 2m9s\n396500K .......... .......... .......... .......... .......... 74% 1.13M 2m9s\n396550K .......... .......... .......... .......... .......... 74% 1.11M 2m9s\n396600K .......... .......... .......... .......... .......... 74% 1.26M 2m8s\n396650K .......... .......... .......... .......... .......... 74% 1.17M 2m8s\n396700K .......... .......... .......... .......... .......... 74% 1.19M 2m8s\n396750K .......... .......... .......... .......... .......... 74% 921K 2m8s\n396800K .......... .......... .......... .......... .......... 74% 1.22M 2m8s\n396850K .......... .......... .......... .......... .......... 74% 173K 2m8s\n396900K .......... .......... .......... .......... .......... 74% 106M 2m8s\n396950K .......... .......... .......... .......... .......... 74% 456M 2m8s\n397000K .......... .......... .......... .......... .......... 74% 161M 2m8s\n397050K .......... .......... .......... .......... .......... 74% 1.47M 2m8s\n397100K .......... .......... .......... .......... .......... 74% 409M 2m8s\n397150K .......... .......... .......... .......... .......... 74% 163K 2m8s\n397200K .......... .......... .......... .......... .......... 74% 2.16M 2m8s\n397250K .......... .......... .......... .......... .......... 74% 19.6M 2m8s\n397300K .......... .......... .......... .......... .......... 74% 66.3M 2m8s\n397350K .......... .......... .......... .......... .......... 74% 136M 2m8s\n397400K .......... .......... .......... .......... .......... 74% 141M 2m8s\n397450K .......... .......... .......... .......... .......... 74% 2.66M 2m8s\n397500K .......... .......... .......... .......... .......... 74% 1.25M 2m8s\n397550K .......... .......... .......... .......... .......... 74% 912K 2m8s\n397600K .......... .......... .......... .......... .......... 74% 1.17M 2m8s\n397650K .......... .......... .......... .......... .......... 74% 1.17M 2m7s\n397700K .......... .......... .......... .......... .......... 74% 1.19M 2m7s\n397750K .......... .......... .......... .......... .......... 74% 1.20M 2m7s\n397800K .......... .......... .......... .......... .......... 74% 1.20M 2m7s\n397850K .......... .......... .......... .......... .......... 74% 1.19M 2m7s\n397900K .......... .......... .......... .......... .......... 74% 1.17M 2m7s\n397950K .......... .......... .......... .......... .......... 74% 907K 2m7s\n398000K .......... .......... .......... .......... .......... 74% 1.22M 2m7s\n398050K .......... .......... .......... .......... .......... 74% 1.21M 2m7s\n398100K .......... .......... .......... .......... .......... 74% 1.14M 2m7s\n398150K .......... .......... .......... .......... .......... 74% 1.15M 2m7s\n398200K .......... .......... .......... .......... .......... 74% 1.23M 2m7s\n398250K .......... .......... .......... .......... .......... 74% 1.16M 2m7s\n398300K .......... .......... .......... .......... .......... 74% 1.25M 2m7s\n398350K .......... .......... .......... .......... .......... 74% 869K 2m7s\n398400K .......... .......... .......... .......... .......... 74% 1.24M 2m7s\n398450K .......... .......... .......... .......... .......... 74% 1.18M 2m7s\n398500K .......... .......... .......... .......... .......... 74% 1.18M 2m7s\n398550K .......... .......... .......... .......... .......... 74% 1.17M 2m7s\n398600K .......... .......... .......... .......... .......... 74% 1.21M 2m7s\n398650K .......... .......... .......... .......... .......... 74% 1.19M 2m7s\n398700K .......... .......... .......... .......... .......... 74% 1.22M 2m6s\n398750K .......... .......... .......... .......... .......... 74% 908K 2m6s\n398800K .......... .......... .......... .......... .......... 74% 1.17M 2m6s\n398850K .......... .......... .......... .......... .......... 75% 1.18M 2m6s\n398900K .......... .......... .......... .......... .......... 75% 1.22M 2m6s\n398950K .......... .......... .......... .......... .......... 75% 1.18M 2m6s\n399000K .......... .......... .......... .......... .......... 75% 1.20M 2m6s\n399050K .......... .......... .......... .......... .......... 75% 1.16M 2m6s\n399100K .......... .......... .......... .......... .......... 75% 1.22M 2m6s\n399150K .......... .......... .......... .......... .......... 75% 891K 2m6s\n399200K .......... .......... .......... .......... .......... 75% 1.24M 2m6s\n399250K .......... .......... .......... .......... .......... 75% 1.18M 2m6s\n399300K .......... .......... .......... .......... .......... 75% 1.18M 2m6s\n399350K .......... .......... .......... .......... .......... 75% 1.14M 2m6s\n399400K .......... .......... .......... .......... .......... 75% 1.13M 2m6s\n399450K .......... .......... .......... .......... .......... 75% 1.09M 2m6s\n399500K .......... .......... .......... .......... .......... 75% 1.41M 2m6s\n399550K .......... .......... .......... .......... .......... 75% 912K 2m6s\n399600K .......... .......... .......... .......... .......... 75% 1.17M 2m6s\n399650K .......... .......... .......... .......... .......... 75% 1.18M 2m6s\n399700K .......... .......... .......... .......... .......... 75% 1.21M 2m5s\n399750K .......... .......... .......... .......... .......... 75% 1.13M 2m5s\n399800K .......... .......... .......... .......... .......... 75% 1.28M 2m5s\n399850K .......... .......... .......... .......... .......... 75% 1.17M 2m5s\n399900K .......... .......... .......... .......... .......... 75% 1.17M 2m5s\n399950K .......... .......... .......... .......... .......... 75% 917K 2m5s\n400000K .......... .......... .......... .......... .......... 75% 1.15M 2m5s\n400050K .......... .......... .......... .......... .......... 75% 1.28M 2m5s\n400100K .......... .......... .......... .......... .......... 75% 1.09M 2m5s\n400150K .......... .......... .......... .......... .......... 75% 1.23M 2m5s\n400200K .......... .......... .......... .......... .......... 75% 1.23M 2m5s\n400250K .......... .......... .......... .......... .......... 75% 1.14M 2m5s\n400300K .......... .......... .......... .......... .......... 75% 1.24M 2m5s\n400350K .......... .......... .......... .......... .......... 75% 883K 2m5s\n400400K .......... .......... .......... .......... .......... 75% 1.22M 2m5s\n400450K .......... .......... .......... .......... .......... 75% 1.16M 2m5s\n400500K .......... .......... .......... .......... .......... 75% 1.12M 2m5s\n400550K .......... .......... .......... .......... .......... 75% 163K 2m5s\n400600K .......... .......... .......... .......... .......... 75% 99.0M 2m5s\n400650K .......... .......... .......... .......... .......... 75% 431M 2m5s\n400700K .......... .......... .......... .......... .......... 75% 1.32M 2m5s\n400750K .......... .......... .......... .......... .......... 75% 114M 2m4s\n400800K .......... .......... .......... .......... .......... 75% 454M 2m4s\n400850K .......... .......... .......... .......... .......... 75% 548K 2m4s\n400900K .......... .......... .......... .......... .......... 75% 199K 2m4s\n400950K .......... .......... .......... .......... .......... 75% 44.3M 2m4s\n401000K .......... .......... .......... .......... .......... 75% 44.0M 2m4s\n401050K .......... .......... .......... .......... .......... 75% 115M 2m4s\n401100K .......... .......... .......... .......... .......... 75% 125M 2m4s\n401150K .......... .......... .......... .......... .......... 75% 1008K 2m4s\n401200K .......... .......... .......... .......... .......... 75% 1.09M 2m4s\n401250K .......... .......... .......... .......... .......... 75% 1.13M 2m4s\n401300K .......... .......... .......... .......... .......... 75% 1.16M 2m4s\n401350K .......... .......... .......... .......... .......... 75% 1.19M 2m4s\n401400K .......... .......... .......... .......... .......... 75% 1.21M 2m4s\n401450K .......... .......... .......... .......... .......... 75% 1.21M 2m4s\n401500K .......... .......... .......... .......... .......... 75% 1.06M 2m4s\n401550K .......... .......... .......... .......... .......... 75% 677K 2m4s\n401600K .......... .......... .......... .......... .......... 75% 1004K 2m4s\n401650K .......... .......... .......... .......... .......... 75% 973K 2m4s\n401700K .......... .......... .......... .......... .......... 75% 1.03M 2m4s\n401750K .......... .......... .......... .......... .......... 75% 1.15M 2m4s\n401800K .......... .......... .......... .......... .......... 75% 966K 2m4s\n401850K .......... .......... .......... .......... .......... 75% 963K 2m3s\n401900K .......... .......... .......... .......... .......... 75% 1.21M 2m3s\n401950K .......... .......... .......... .......... .......... 75% 818K 2m3s\n402000K .......... .......... .......... .......... .......... 75% 1.15M 2m3s\n402050K .......... .......... .......... .......... .......... 75% 1.20M 2m3s\n402100K .......... .......... .......... .......... .......... 75% 1.16M 2m3s\n402150K .......... .......... .......... .......... .......... 75% 1.07M 2m3s\n402200K .......... .......... .......... .......... .......... 75% 1.29M 2m3s\n402250K .......... .......... .......... .......... .......... 75% 1.18M 2m3s\n402300K .......... .......... .......... .......... .......... 75% 1.22M 2m3s\n402350K .......... .......... .......... .......... .......... 75% 949K 2m3s\n402400K .......... .......... .......... .......... .......... 75% 1.15M 2m3s\n402450K .......... .......... .......... .......... .......... 75% 1.18M 2m3s\n402500K .......... .......... .......... .......... .......... 75% 1.20M 2m3s\n402550K .......... .......... .......... .......... .......... 75% 1.18M 2m3s\n402600K .......... .......... .......... .......... .......... 75% 1.15M 2m3s\n402650K .......... .......... .......... .......... .......... 75% 1.13M 2m3s\n402700K .......... .......... .......... .......... .......... 75% 1.28M 2m3s\n402750K .......... .......... .......... .......... .......... 75% 894K 2m3s\n402800K .......... .......... .......... .......... .......... 75% 1.25M 2m3s\n402850K .......... .......... .......... .......... .......... 75% 1.16M 2m2s\n402900K .......... .......... .......... .......... .......... 75% 1.20M 2m2s\n402950K .......... .......... .......... .......... .......... 75% 843K 2m2s\n403000K .......... .......... .......... .......... .......... 75% 1.97M 2m2s\n403050K .......... .......... .......... .......... .......... 75% 1.17M 2m2s\n403100K .......... .......... .......... .......... .......... 75% 1.25M 2m2s\n403150K .......... .......... .......... .......... .......... 75% 899K 2m2s\n403200K .......... .......... .......... .......... .......... 75% 1.16M 2m2s\n403250K .......... .......... .......... .......... .......... 75% 1.22M 2m2s\n403300K .......... .......... .......... .......... .......... 75% 1.19M 2m2s\n403350K .......... .......... .......... .......... .......... 75% 1.21M 2m2s\n403400K .......... .......... .......... .......... .......... 75% 1.20M 2m2s\n403450K .......... .......... .......... .......... .......... 75% 1.17M 2m2s\n403500K .......... .......... .......... .......... .......... 75% 1.20M 2m2s\n403550K .......... .......... .......... .......... .......... 75% 903K 2m2s\n403600K .......... .......... .......... .......... .......... 75% 1.08M 2m2s\n403650K .......... .......... .......... .......... .......... 75% 1.30M 2m2s\n403700K .......... .......... .......... .......... .......... 75% 1.20M 2m2s\n403750K .......... .......... .......... .......... .......... 75% 1.16M 2m2s\n403800K .......... .......... .......... .......... .......... 75% 1.20M 2m2s\n403850K .......... .......... .......... .......... .......... 75% 1.17M 2m2s\n403900K .......... .......... .......... .......... .......... 75% 1.20M 2m1s\n403950K .......... .......... .......... .......... .......... 75% 904K 2m1s\n404000K .......... .......... .......... .......... .......... 75% 1.19M 2m1s\n404050K .......... .......... .......... .......... .......... 75% 1.18M 2m1s\n404100K .......... .......... .......... .......... .......... 75% 1.20M 2m1s\n404150K .......... .......... .......... .......... .......... 75% 1.11M 2m1s\n404200K .......... .......... .......... .......... .......... 76% 1.25M 2m1s\n404250K .......... .......... .......... .......... .......... 76% 1.03M 2m1s\n404300K .......... .......... .......... .......... .......... 76% 1.43M 2m1s\n404350K .......... .......... .......... .......... .......... 76% 930K 2m1s\n404400K .......... .......... .......... .......... .......... 76% 1.19M 2m1s\n404450K .......... .......... .......... .......... .......... 76% 1.18M 2m1s\n404500K .......... .......... .......... .......... .......... 76% 1.19M 2m1s\n404550K .......... .......... .......... .......... .......... 76% 1.19M 2m1s\n404600K .......... .......... .......... .......... .......... 76% 1.20M 2m1s\n404650K .......... .......... .......... .......... .......... 76% 1.21M 2m1s\n404700K .......... .......... .......... .......... .......... 76% 1.09M 2m1s\n404750K .......... .......... .......... .......... .......... 76% 952K 2m1s\n404800K .......... .......... .......... .......... .......... 76% 1.21M 2m1s\n404850K .......... .......... .......... .......... .......... 76% 1.17M 2m1s\n404900K .......... .......... .......... .......... .......... 76% 1.13M 2m0s\n404950K .......... .......... .......... .......... .......... 76% 1.17M 2m0s\n405000K .......... .......... .......... .......... .......... 76% 1.24M 2m0s\n405050K .......... .......... .......... .......... .......... 76% 1.10M 2m0s\n405100K .......... .......... .......... .......... .......... 76% 1.29M 2m0s\n405150K .......... .......... .......... .......... .......... 76% 926K 2m0s\n405200K .......... .......... .......... .......... .......... 76% 1.14M 2m0s\n405250K .......... .......... .......... .......... .......... 76% 1.23M 2m0s\n405300K .......... .......... .......... .......... .......... 76% 1.10M 2m0s\n405350K .......... .......... .......... .......... .......... 76% 1.29M 2m0s\n405400K .......... .......... .......... .......... .......... 76% 1.11M 2m0s\n405450K .......... .......... .......... .......... .......... 76% 1.27M 2m0s\n405500K .......... .......... .......... .......... .......... 76% 1.20M 2m0s\n405550K .......... .......... .......... .......... .......... 76% 905K 2m0s\n405600K .......... .......... .......... .......... .......... 76% 1.19M 2m0s\n405650K .......... .......... .......... .......... .......... 76% 1.17M 2m0s\n405700K .......... .......... .......... .......... .......... 76% 1.22M 2m0s\n405750K .......... .......... .......... .......... .......... 76% 1.16M 2m0s\n405800K .......... .......... .......... .......... .......... 76% 1.21M 2m0s\n405850K .......... .......... .......... .......... .......... 76% 1.16M 2m0s\n405900K .......... .......... .......... .......... .......... 76% 1.15M 1m59s\n405950K .......... .......... .......... .......... .......... 76% 897K 1m59s\n406000K .......... .......... .......... .......... .......... 76% 1.14M 1m59s\n406050K .......... .......... .......... .......... .......... 76% 1.27M 1m59s\n406100K .......... .......... .......... .......... .......... 76% 1.22M 1m59s\n406150K .......... .......... .......... .......... .......... 76% 1.20M 1m59s\n406200K .......... .......... .......... .......... .......... 76% 1.19M 1m59s\n406250K .......... .......... .......... .......... .......... 76% 1.02M 1m59s\n406300K .......... .......... .......... .......... .......... 76% 1.37M 1m59s\n406350K .......... .......... .......... .......... .......... 76% 947K 1m59s\n406400K .......... .......... .......... .......... .......... 76% 1.16M 1m59s\n406450K .......... .......... .......... .......... .......... 76% 1.21M 1m59s\n406500K .......... .......... .......... .......... .......... 76% 1.14M 1m59s\n406550K .......... .......... .......... .......... .......... 76% 1.26M 1m59s\n406600K .......... .......... .......... .......... .......... 76% 1.12M 1m59s\n406650K .......... .......... .......... .......... .......... 76% 1.25M 1m59s\n406700K .......... .......... .......... .......... .......... 76% 1.20M 1m59s\n406750K .......... .......... .......... .......... .......... 76% 904K 1m59s\n406800K .......... .......... .......... .......... .......... 76% 1.19M 1m59s\n406850K .......... .......... .......... .......... .......... 76% 1.17M 1m59s\n406900K .......... .......... .......... .......... .......... 76% 1.15M 1m59s\n406950K .......... .......... .......... .......... .......... 76% 1.19M 1m58s\n407000K .......... .......... .......... .......... .......... 76% 1.15M 1m58s\n407050K .......... .......... .......... .......... .......... 76% 1.27M 1m58s\n407100K .......... .......... .......... .......... .......... 76% 1.18M 1m58s\n407150K .......... .......... .......... .......... .......... 76% 896K 1m58s\n407200K .......... .......... .......... .......... .......... 76% 1.24M 1m58s\n407250K .......... .......... .......... .......... .......... 76% 1.16M 1m58s\n407300K .......... .......... .......... .......... .......... 76% 1.21M 1m58s\n407350K .......... .......... .......... .......... .......... 76% 1.18M 1m58s\n407400K .......... .......... .......... .......... .......... 76% 1.17M 1m58s\n407450K .......... .......... .......... .......... .......... 76% 1.20M 1m58s\n407500K .......... .......... .......... .......... .......... 76% 1.20M 1m58s\n407550K .......... .......... .......... .......... .......... 76% 927K 1m58s\n407600K .......... .......... .......... .......... .......... 76% 1.16M 1m58s\n407650K .......... .......... .......... .......... .......... 76% 1.19M 1m58s\n407700K .......... .......... .......... .......... .......... 76% 1.20M 1m58s\n407750K .......... .......... .......... .......... .......... 76% 1.06M 1m58s\n407800K .......... .......... .......... .......... .......... 76% 1.39M 1m58s\n407850K .......... .......... .......... .......... .......... 76% 1.17M 1m58s\n407900K .......... .......... .......... .......... .......... 76% 1.19M 1m58s\n407950K .......... .......... .......... .......... .......... 76% 894K 1m57s\n408000K .......... .......... .......... .......... .......... 76% 1.19M 1m57s\n408050K .......... .......... .......... .......... .......... 76% 1.17M 1m57s\n408100K .......... .......... .......... .......... .......... 76% 1.21M 1m57s\n408150K .......... .......... .......... .......... .......... 76% 1.18M 1m57s\n408200K .......... .......... .......... .......... .......... 76% 1.18M 1m57s\n408250K .......... .......... .......... .......... .......... 76% 1.18M 1m57s\n408300K .......... .......... .......... .......... .......... 76% 1.01M 1m57s\n408350K .......... .......... .......... .......... .......... 76% 1.03M 1m57s\n408400K .......... .......... .......... .......... .......... 76% 1.08M 1m57s\n408450K .......... .......... .......... .......... .......... 76% 1.25M 1m57s\n408500K .......... .......... .......... .......... .......... 76% 1.22M 1m57s\n408550K .......... .......... .......... .......... .......... 76% 1.20M 1m57s\n408600K .......... .......... .......... .......... .......... 76% 1.19M 1m57s\n408650K .......... .......... .......... .......... .......... 76% 1.19M 1m57s\n408700K .......... .......... .......... .......... .......... 76% 1.23M 1m57s\n408750K .......... .......... .......... .......... .......... 76% 923K 1m57s\n408800K .......... .......... .......... .......... .......... 76% 1.09M 1m57s\n408850K .......... .......... .......... .......... .......... 76% 1.29M 1m57s\n408900K .......... .......... .......... .......... .......... 76% 1.21M 1m57s\n408950K .......... .......... .......... .......... .......... 76% 1.10M 1m57s\n409000K .......... .......... .......... .......... .......... 76% 186K 1m57s\n409050K .......... .......... .......... .......... .......... 76% 402M 1m56s\n409100K .......... .......... .......... .......... .......... 76% 154M 1m56s\n409150K .......... .......... .......... .......... .......... 76% 1.46M 1m56s\n409200K .......... .......... .......... .......... .......... 76% 303M 1m56s\n409250K .......... .......... .......... .......... .......... 76% 989K 1m56s\n409300K .......... .......... .......... .......... .......... 76% 1.16M 1m56s\n409350K .......... .......... .......... .......... .......... 76% 204K 1m56s\n409400K .......... .......... .......... .......... .......... 76% 433M 1m56s\n409450K .......... .......... .......... .......... .......... 76% 84.3M 1m56s\n409500K .......... .......... .......... .......... .......... 77% 92.7M 1m56s\n409550K .......... .......... .......... .......... .......... 77% 370M 1m56s\n409600K .......... .......... .......... .......... .......... 77% 619K 1m56s\n409650K .......... .......... .......... .......... .......... 77% 4.88M 1m56s\n409700K .......... .......... .......... .......... .......... 77% 1.05M 1m56s\n409750K .......... .......... .......... .......... .......... 77% 1.17M 1m56s\n409800K .......... .......... .......... .......... .......... 77% 1.09M 1m56s\n409850K .......... .......... .......... .......... .......... 77% 1.28M 1m56s\n409900K .......... .......... .......... .......... .......... 77% 1.12M 1m56s\n409950K .......... .......... .......... .......... .......... 77% 915K 1m56s\n410000K .......... .......... .......... .......... .......... 77% 1.23M 1m56s\n410050K .......... .......... .......... .......... .......... 77% 1.21M 1m55s\n410100K .......... .......... .......... .......... .......... 77% 1.10M 1m55s\n410150K .......... .......... .......... .......... .......... 77% 1.26M 1m55s\n410200K .......... .......... .......... .......... .......... 77% 1.19M 1m55s\n410250K .......... .......... .......... .......... .......... 77% 1.20M 1m55s\n410300K .......... .......... .......... .......... .......... 77% 435K 1m55s\n410350K .......... .......... .......... .......... .......... 77% 73.3M 1m55s\n410400K .......... .......... .......... .......... .......... 77% 2.16M 1m55s\n410450K .......... .......... .......... .......... .......... 77% 1.19M 1m55s\n410500K .......... .......... .......... .......... .......... 77% 1.18M 1m55s\n410550K .......... .......... .......... .......... .......... 77% 1.18M 1m55s\n410600K .......... .......... .......... .......... .......... 77% 1.18M 1m55s\n410650K .......... .......... .......... .......... .......... 77% 1.22M 1m55s\n410700K .......... .......... .......... .......... .......... 77% 1.18M 1m55s\n410750K .......... .......... .......... .......... .......... 77% 895K 1m55s\n410800K .......... .......... .......... .......... .......... 77% 1.25M 1m55s\n410850K .......... .......... .......... .......... .......... 77% 186K 1m55s\n410900K .......... .......... .......... .......... .......... 77% 4.75M 1m55s\n410950K .......... .......... .......... .......... .......... 77% 14.7M 1m55s\n411000K .......... .......... .......... .......... .......... 77% 12.7M 1m55s\n411050K .......... .......... .......... .......... .......... 77% 18.0M 1m55s\n411100K .......... .......... .......... .......... .......... 77% 10.4M 1m54s\n411150K .......... .......... .......... .......... .......... 77% 768K 1m54s\n411200K .......... .......... .......... .......... .......... 77% 889K 1m54s\n411250K .......... .......... .......... .......... .......... 77% 197K 1m54s\n411300K .......... .......... .......... .......... .......... 77% 83.7M 1m54s\n411350K .......... .......... .......... .......... .......... 77% 155M 1m54s\n411400K .......... .......... .......... .......... .......... 77% 63.7M 1m54s\n411450K .......... .......... .......... .......... .......... 77% 167M 1m54s\n411500K .......... .......... .......... .......... .......... 77% 1.40M 1m54s\n411550K .......... .......... .......... .......... .......... 77% 779K 1m54s\n411600K .......... .......... .......... .......... .......... 77% 1.03M 1m54s\n411650K .......... .......... .......... .......... .......... 77% 988K 1m54s\n411700K .......... .......... .......... .......... .......... 77% 963K 1m54s\n411750K .......... .......... .......... .......... .......... 77% 986K 1m54s\n411800K .......... .......... .......... .......... .......... 77% 977K 1m54s\n411850K .......... .......... .......... .......... .......... 77% 908K 1m54s\n411900K .......... .......... .......... .......... .......... 77% 899K 1m54s\n411950K .......... .......... .......... .......... .......... 77% 722K 1m54s\n412000K .......... .......... .......... .......... .......... 77% 937K 1m54s\n412050K .......... .......... .......... .......... .......... 77% 933K 1m54s\n412100K .......... .......... .......... .......... .......... 77% 940K 1m54s\n412150K .......... .......... .......... .......... .......... 77% 1014K 1m54s\n412200K .......... .......... .......... .......... .......... 77% 903K 1m53s\n412250K .......... .......... .......... .......... .......... 77% 915K 1m53s\n412300K .......... .......... .......... .......... .......... 77% 885K 1m53s\n412350K .......... .......... .......... .......... .......... 77% 206K 1m53s\n412400K .......... .......... .......... .......... .......... 77% 82.1M 1m53s\n412450K .......... .......... .......... .......... .......... 77% 155M 1m53s\n412500K .......... .......... .......... .......... .......... 77% 172M 1m53s\n412550K .......... .......... .......... .......... .......... 77% 129M 1m53s\n412600K .......... .......... .......... .......... .......... 77% 1.01M 1m53s\n412650K .......... .......... .......... .......... .......... 77% 1.28M 1m53s\n412700K .......... .......... .......... .......... .......... 77% 1.14M 1m53s\n412750K .......... .......... .......... .......... .......... 77% 934K 1m53s\n412800K .......... .......... .......... .......... .......... 77% 1.19M 1m53s\n412850K .......... .......... .......... .......... .......... 77% 1.21M 1m53s\n412900K .......... .......... .......... .......... .......... 77% 1.17M 1m53s\n412950K .......... .......... .......... .......... .......... 77% 1.17M 1m53s\n413000K .......... .......... .......... .......... .......... 77% 1.21M 1m53s\n413050K .......... .......... .......... .......... .......... 77% 1.16M 1m53s\n413100K .......... .......... .......... .......... .......... 77% 1.19M 1m53s\n413150K .......... .......... .......... .......... .......... 77% 913K 1m53s\n413200K .......... .......... .......... .......... .......... 77% 1.14M 1m53s\n413250K .......... .......... .......... .......... .......... 77% 956K 1m52s\n413300K .......... .......... .......... .......... .......... 77% 177K 1m52s\n413350K .......... .......... .......... .......... .......... 77% 4.34M 1m52s\n413400K .......... .......... .......... .......... .......... 77% 65.6M 1m52s\n413450K .......... .......... .......... .......... .......... 77% 134M 1m52s\n413500K .......... .......... .......... .......... .......... 77% 82.9M 1m52s\n413550K .......... .......... .......... .......... .......... 77% 9.99M 1m52s\n413600K .......... .......... .......... .......... .......... 77% 1.18M 1m52s\n413650K .......... .......... .......... .......... .......... 77% 1.13M 1m52s\n413700K .......... .......... .......... .......... .......... 77% 1.22M 1m52s\n413750K .......... .......... .......... .......... .......... 77% 1.19M 1m52s\n413800K .......... .......... .......... .......... .......... 77% 1.16M 1m52s\n413850K .......... .......... .......... .......... .......... 77% 1.14M 1m52s\n413900K .......... .......... .......... .......... .......... 77% 1.27M 1m52s\n413950K .......... .......... .......... .......... .......... 77% 890K 1m52s\n414000K .......... .......... .......... .......... .......... 77% 1.19M 1m52s\n414050K .......... .......... .......... .......... .......... 77% 1.19M 1m52s\n414100K .......... .......... .......... .......... .......... 77% 1.23M 1m52s\n414150K .......... .......... .......... .......... .......... 77% 1.19M 1m52s\n414200K .......... .......... .......... .......... .......... 77% 878K 1m52s\n414250K .......... .......... .......... .......... .......... 77% 1.19M 1m52s\n414300K .......... .......... .......... .......... .......... 77% 1.18M 1m51s\n414350K .......... .......... .......... .......... .......... 77% 855K 1m51s\n414400K .......... .......... .......... .......... .......... 77% 1.18M 1m51s\n414450K .......... .......... .......... .......... .......... 77% 1.19M 1m51s\n414500K .......... .......... .......... .......... .......... 77% 1.18M 1m51s\n414550K .......... .......... .......... .......... .......... 77% 1.19M 1m51s\n414600K .......... .......... .......... .......... .......... 77% 1.20M 1m51s\n414650K .......... .......... .......... .......... .......... 77% 1.14M 1m51s\n414700K .......... .......... .......... .......... .......... 77% 1.19M 1m51s\n414750K .......... .......... .......... .......... .......... 77% 925K 1m51s\n414800K .......... .......... .......... .......... .......... 77% 1.19M 1m51s\n414850K .......... .......... .......... .......... .......... 78% 1.20M 1m51s\n414900K .......... .......... .......... .......... .......... 78% 1.16M 1m51s\n414950K .......... .......... .......... .......... .......... 78% 1.14M 1m51s\n415000K .......... .......... .......... .......... .......... 78% 1.13M 1m51s\n415050K .......... .......... .......... .......... .......... 78% 1.18M 1m51s\n415100K .......... .......... .......... .......... .......... 78% 1.19M 1m51s\n415150K .......... .......... .......... .......... .......... 78% 675K 1m51s\n415200K .......... .......... .......... .......... .......... 78% 1.08M 1m51s\n415250K .......... .......... .......... .......... .......... 78% 1.23M 1m51s\n415300K .......... .......... .......... .......... .......... 78% 1.17M 1m50s\n415350K .......... .......... .......... .......... .......... 78% 1.28M 1m50s\n415400K .......... .......... .......... .......... .......... 78% 1.18M 1m50s\n415450K .......... .......... .......... .......... .......... 78% 1.17M 1m50s\n415500K .......... .......... .......... .......... .......... 78% 1.18M 1m50s\n415550K .......... .......... .......... .......... .......... 78% 908K 1m50s\n415600K .......... .......... .......... .......... .......... 78% 1.13M 1m50s\n415650K .......... .......... .......... .......... .......... 78% 1.21M 1m50s\n415700K .......... .......... .......... .......... .......... 78% 1.20M 1m50s\n415750K .......... .......... .......... .......... .......... 78% 1.19M 1m50s\n415800K .......... .......... .......... .......... .......... 78% 1.15M 1m50s\n415850K .......... .......... .......... .......... .......... 78% 1.22M 1m50s\n415900K .......... .......... .......... .......... .......... 78% 1.14M 1m50s\n415950K .......... .......... .......... .......... .......... 78% 930K 1m50s\n416000K .......... .......... .......... .......... .......... 78% 1.19M 1m50s\n416050K .......... .......... .......... .......... .......... 78% 1.18M 1m50s\n416100K .......... .......... .......... .......... .......... 78% 1.13M 1m50s\n416150K .......... .......... .......... .......... .......... 78% 1.25M 1m50s\n416200K .......... .......... .......... .......... .......... 78% 1.18M 1m50s\n416250K .......... .......... .......... .......... .......... 78% 1.19M 1m50s\n416300K .......... .......... .......... .......... .......... 78% 1.06M 1m50s\n416350K .......... .......... .......... .......... .......... 78% 676K 1m49s\n416400K .......... .......... .......... .......... .......... 78% 1.23M 1m49s\n416450K .......... .......... .......... .......... .......... 78% 1.21M 1m49s\n416500K .......... .......... .......... .......... .......... 78% 1.18M 1m49s\n416550K .......... .......... .......... .......... .......... 78% 1.17M 1m49s\n416600K .......... .......... .......... .......... .......... 78% 1.22M 1m49s\n416650K .......... .......... .......... .......... .......... 78% 1.20M 1m49s\n416700K .......... .......... .......... .......... .......... 78% 1.13M 1m49s\n416750K .......... .......... .......... .......... .......... 78% 951K 1m49s\n416800K .......... .......... .......... .......... .......... 78% 1.20M 1m49s\n416850K .......... .......... .......... .......... .......... 78% 1.16M 1m49s\n416900K .......... .......... .......... .......... .......... 78% 1.23M 1m49s\n416950K .......... .......... .......... .......... .......... 78% 1.18M 1m49s\n417000K .......... .......... .......... .......... .......... 78% 1.17M 1m49s\n417050K .......... .......... .......... .......... .......... 78% 1.21M 1m49s\n417100K .......... .......... .......... .......... .......... 78% 1.16M 1m49s\n417150K .......... .......... .......... .......... .......... 78% 898K 1m49s\n417200K .......... .......... .......... .......... .......... 78% 1.19M 1m49s\n417250K .......... .......... .......... .......... .......... 78% 1.15M 1m49s\n417300K .......... .......... .......... .......... .......... 78% 1.25M 1m49s\n417350K .......... .......... .......... .......... .......... 78% 1.19M 1m49s\n417400K .......... .......... .......... .......... .......... 78% 1.07M 1m48s\n417450K .......... .......... .......... .......... .......... 78% 1.31M 1m48s\n417500K .......... .......... .......... .......... .......... 78% 1.19M 1m48s\n417550K .......... .......... .......... .......... .......... 78% 912K 1m48s\n417600K .......... .......... .......... .......... .......... 78% 1.20M 1m48s\n417650K .......... .......... .......... .......... .......... 78% 1.18M 1m48s\n417700K .......... .......... .......... .......... .......... 78% 1.17M 1m48s\n417750K .......... .......... .......... .......... .......... 78% 1.17M 1m48s\n417800K .......... .......... .......... .......... .......... 78% 1.26M 1m48s\n417850K .......... .......... .......... .......... .......... 78% 1.16M 1m48s\n417900K .......... .......... .......... .......... .......... 78% 1.19M 1m48s\n417950K .......... .......... .......... .......... .......... 78% 920K 1m48s\n418000K .......... .......... .......... .......... .......... 78% 1.19M 1m48s\n418050K .......... .......... .......... .......... .......... 78% 1.16M 1m48s\n418100K .......... .......... .......... .......... .......... 78% 1.19M 1m48s\n418150K .......... .......... .......... .......... .......... 78% 1.21M 1m48s\n418200K .......... .......... .......... .......... .......... 78% 1.21M 1m48s\n418250K .......... .......... .......... .......... .......... 78% 1.15M 1m48s\n418300K .......... .......... .......... .......... .......... 78% 1.21M 1m48s\n418350K .......... .......... .......... .......... .......... 78% 910K 1m48s\n418400K .......... .......... .......... .......... .......... 78% 1.20M 1m47s\n418450K .......... .......... .......... .......... .......... 78% 1.13M 1m47s\n418500K .......... .......... .......... .......... .......... 78% 1.26M 1m47s\n418550K .......... .......... .......... .......... .......... 78% 1.13M 1m47s\n418600K .......... .......... .......... .......... .......... 78% 1.17M 1m47s\n418650K .......... .......... .......... .......... .......... 78% 1.24M 1m47s\n418700K .......... .......... .......... .......... .......... 78% 1.21M 1m47s\n418750K .......... .......... .......... .......... .......... 78% 900K 1m47s\n418800K .......... .......... .......... .......... .......... 78% 1.09M 1m47s\n418850K .......... .......... .......... .......... .......... 78% 1.26M 1m47s\n418900K .......... .......... .......... .......... .......... 78% 1.17M 1m47s\n418950K .......... .......... .......... .......... .......... 78% 1.24M 1m47s\n419000K .......... .......... .......... .......... .......... 78% 1.06M 1m47s\n419050K .......... .......... .......... .......... .......... 78% 1.35M 1m47s\n419100K .......... .......... .......... .......... .......... 78% 1.20M 1m47s\n419150K .......... .......... .......... .......... .......... 78% 894K 1m47s\n419200K .......... .......... .......... .......... .......... 78% 1.22M 1m47s\n419250K .......... .......... .......... .......... .......... 78% 1.16M 1m47s\n419300K .......... .......... .......... .......... .......... 78% 1.21M 1m47s\n419350K .......... .......... .......... .......... .......... 78% 1.17M 1m47s\n419400K .......... .......... .......... .......... .......... 78% 1.19M 1m47s\n419450K .......... .......... .......... .......... .......... 78% 1.17M 1m46s\n419500K .......... .......... .......... .......... .......... 78% 1.21M 1m46s\n419550K .......... .......... .......... .......... .......... 78% 896K 1m46s\n419600K .......... .......... .......... .......... .......... 78% 1.16M 1m46s\n419650K .......... .......... .......... .......... .......... 78% 1.21M 1m46s\n419700K .......... .......... .......... .......... .......... 78% 1.21M 1m46s\n419750K .......... .......... .......... .......... .......... 78% 1.19M 1m46s\n419800K .......... .......... .......... .......... .......... 78% 1.18M 1m46s\n419850K .......... .......... .......... .......... .......... 78% 1.20M 1m46s\n419900K .......... .......... .......... .......... .......... 78% 1.19M 1m46s\n419950K .......... .......... .......... .......... .......... 78% 917K 1m46s\n420000K .......... .......... .......... .......... .......... 78% 1.14M 1m46s\n420050K .......... .......... .......... .......... .......... 78% 1.25M 1m46s\n420100K .......... .......... .......... .......... .......... 78% 1.16M 1m46s\n420150K .......... .......... .......... .......... .......... 79% 1.17M 1m46s\n420200K .......... .......... .......... .......... .......... 79% 1.20M 1m46s\n420250K .......... .......... .......... .......... .......... 79% 1.14M 1m46s\n420300K .......... .......... .......... .......... .......... 79% 1.22M 1m46s\n420350K .......... .......... .......... .......... .......... 79% 903K 1m46s\n420400K .......... .......... .......... .......... .......... 79% 1.15M 1m46s\n420450K .......... .......... .......... .......... .......... 79% 1.25M 1m45s\n420500K .......... .......... .......... .......... .......... 79% 1.17M 1m45s\n420550K .......... .......... .......... .......... .......... 79% 1.17M 1m45s\n420600K .......... .......... .......... .......... .......... 79% 1.13M 1m45s\n420650K .......... .......... .......... .......... .......... 79% 1.18M 1m45s\n420700K .......... .......... .......... .......... .......... 79% 1.21M 1m45s\n420750K .......... .......... .......... .......... .......... 79% 885K 1m45s\n420800K .......... .......... .......... .......... .......... 79% 1.17M 1m45s\n420850K .......... .......... .......... .......... .......... 79% 1.14M 1m45s\n420900K .......... .......... .......... .......... .......... 79% 1.19M 1m45s\n420950K .......... .......... .......... .......... .......... 79% 1.19M 1m45s\n421000K .......... .......... .......... .......... .......... 79% 1.11M 1m45s\n421050K .......... .......... .......... .......... .......... 79% 1.28M 1m45s\n421100K .......... .......... .......... .......... .......... 79% 1.09M 1m45s\n421150K .......... .......... .......... .......... .......... 79% 810K 1m45s\n421200K .......... .......... .......... .......... .......... 79% 1.53M 1m45s\n421250K .......... .......... .......... .......... .......... 79% 1.12M 1m45s\n421300K .......... .......... .......... .......... .......... 79% 1.28M 1m45s\n421350K .......... .......... .......... .......... .......... 79% 1.09M 1m45s\n421400K .......... .......... .......... .......... .......... 79% 1.24M 1m45s\n421450K .......... .......... .......... .......... .......... 79% 1.16M 1m45s\n421500K .......... .......... .......... .......... .......... 79% 1.20M 1m44s\n421550K .......... .......... .......... .......... .......... 79% 900K 1m44s\n421600K .......... .......... .......... .......... .......... 79% 1.25M 1m44s\n421650K .......... .......... .......... .......... .......... 79% 1.19M 1m44s\n421700K .......... .......... .......... .......... .......... 79% 1.19M 1m44s\n421750K .......... .......... .......... .......... .......... 79% 1.17M 1m44s\n421800K .......... .......... .......... .......... .......... 79% 1.14M 1m44s\n421850K .......... .......... .......... .......... .......... 79% 1.23M 1m44s\n421900K .......... .......... .......... .......... .......... 79% 157K 1m44s\n421950K .......... .......... .......... .......... .......... 79% 287M 1m44s\n422000K .......... .......... .......... .......... .......... 79% 498M 1m44s\n422050K .......... .......... .......... .......... .......... 79% 1.50M 1m44s\n422100K .......... .......... .......... .......... .......... 79% 404M 1m44s\n422150K .......... .......... .......... .......... .......... 79% 1.29M 1m44s\n422200K .......... .......... .......... .......... .......... 79% 1.09M 1m44s\n422250K .......... .......... .......... .......... .......... 79% 199K 1m44s\n422300K .......... .......... .......... .......... .......... 79% 83.8M 1m44s\n422350K .......... .......... .......... .......... .......... 79% 265M 1m44s\n422400K .......... .......... .......... .......... .......... 79% 63.8M 1m44s\n422450K .......... .......... .......... .......... .......... 79% 368M 1m44s\n422500K .......... .......... .......... .......... .......... 79% 1.61M 1m44s\n422550K .......... .......... .......... .......... .......... 79% 1.19M 1m43s\n422600K .......... .......... .......... .......... .......... 79% 1.20M 1m43s\n422650K .......... .......... .......... .......... .......... 79% 1.17M 1m43s\n422700K .......... .......... .......... .......... .......... 79% 1.19M 1m43s\n422750K .......... .......... .......... .......... .......... 79% 885K 1m43s\n422800K .......... .......... .......... .......... .......... 79% 1.20M 1m43s\n422850K .......... .......... .......... .......... .......... 79% 1.22M 1m43s\n422900K .......... .......... .......... .......... .......... 79% 1.18M 1m43s\n422950K .......... .......... .......... .......... .......... 79% 1.18M 1m43s\n423000K .......... .......... .......... .......... .......... 79% 1.18M 1m43s\n423050K .......... .......... .......... .......... .......... 79% 1.15M 1m43s\n423100K .......... .......... .......... .......... .......... 79% 1.24M 1m43s\n423150K .......... .......... .......... .......... .......... 79% 931K 1m43s\n423200K .......... .......... .......... .......... .......... 79% 1.16M 1m43s\n423250K .......... .......... .......... .......... .......... 79% 1.21M 1m43s\n423300K .......... .......... .......... .......... .......... 79% 1.16M 1m43s\n423350K .......... .......... .......... .......... .......... 79% 1.20M 1m43s\n423400K .......... .......... .......... .......... .......... 79% 1.21M 1m43s\n423450K .......... .......... .......... .......... .......... 79% 1.18M 1m43s\n423500K .......... .......... .......... .......... .......... 79% 1.19M 1m43s\n423550K .......... .......... .......... .......... .......... 79% 905K 1m43s\n423600K .......... .......... .......... .......... .......... 79% 1.19M 1m42s\n423650K .......... .......... .......... .......... .......... 79% 1.17M 1m42s\n423700K .......... .......... .......... .......... .......... 79% 1.23M 1m42s\n423750K .......... .......... .......... .......... .......... 79% 1.18M 1m42s\n423800K .......... .......... .......... .......... .......... 79% 1.19M 1m42s\n423850K .......... .......... .......... .......... .......... 79% 1.13M 1m42s\n423900K .......... .......... .......... .......... .......... 79% 1.22M 1m42s\n423950K .......... .......... .......... .......... .......... 79% 920K 1m42s\n424000K .......... .......... .......... .......... .......... 79% 1.18M 1m42s\n424050K .......... .......... .......... .......... .......... 79% 1.21M 1m42s\n424100K .......... .......... .......... .......... .......... 79% 1.15M 1m42s\n424150K .......... .......... .......... .......... .......... 79% 1.19M 1m42s\n424200K .......... .......... .......... .......... .......... 79% 1.20M 1m42s\n424250K .......... .......... .......... .......... .......... 79% 1.16M 1m42s\n424300K .......... .......... .......... .......... .......... 79% 1.22M 1m42s\n424350K .......... .......... .......... .......... .......... 79% 924K 1m42s\n424400K .......... .......... .......... .......... .......... 79% 1.19M 1m42s\n424450K .......... .......... .......... .......... .......... 79% 1.19M 1m42s\n424500K .......... .......... .......... .......... .......... 79% 1.19M 1m42s\n424550K .......... .......... .......... .......... .......... 79% 1.16M 1m42s\n424600K .......... .......... .......... .......... .......... 79% 1.19M 1m42s\n424650K .......... .......... .......... .......... .......... 79% 1.20M 1m41s\n424700K .......... .......... .......... .......... .......... 79% 1.21M 1m41s\n424750K .......... .......... .......... .......... .......... 79% 927K 1m41s\n424800K .......... .......... .......... .......... .......... 79% 1.15M 1m41s\n424850K .......... .......... .......... .......... .......... 79% 1.19M 1m41s\n424900K .......... .......... .......... .......... .......... 79% 1.21M 1m41s\n424950K .......... .......... .......... .......... .......... 79% 1.17M 1m41s\n425000K .......... .......... .......... .......... .......... 79% 1.19M 1m41s\n425050K .......... .......... .......... .......... .......... 79% 1.21M 1m41s\n425100K .......... .......... .......... .......... .......... 79% 1.17M 1m41s\n425150K .......... .......... .......... .......... .......... 79% 907K 1m41s\n425200K .......... .......... .......... .......... .......... 79% 1.11M 1m41s\n425250K .......... .......... .......... .......... .......... 79% 1.25M 1m41s\n425300K .......... .......... .......... .......... .......... 79% 1.11M 1m41s\n425350K .......... .......... .......... .......... .......... 79% 1.29M 1m41s\n425400K .......... .......... .......... .......... .......... 79% 1.18M 1m41s\n425450K .......... .......... .......... .......... .......... 80% 1.05M 1m41s\n425500K .......... .......... .......... .......... .......... 80% 1.35M 1m41s\n425550K .......... .......... .......... .......... .......... 80% 914K 1m41s\n425600K .......... .......... .......... .......... .......... 80% 1.19M 1m41s\n425650K .......... .......... .......... .......... .......... 80% 1.20M 1m40s\n425700K .......... .......... .......... .......... .......... 80% 1.19M 1m40s\n425750K .......... .......... .......... .......... .......... 80% 1.18M 1m40s\n425800K .......... .......... .......... .......... .......... 80% 1.17M 1m40s\n425850K .......... .......... .......... .......... .......... 80% 1.20M 1m40s\n425900K .......... .......... .......... .......... .......... 80% 1.17M 1m40s\n425950K .......... .......... .......... .......... .......... 80% 907K 1m40s\n426000K .......... .......... .......... .......... .......... 80% 1.21M 1m40s\n426050K .......... .......... .......... .......... .......... 80% 1.14M 1m40s\n426100K .......... .......... .......... .......... .......... 80% 1.22M 1m40s\n426150K .......... .......... .......... .......... .......... 80% 1.18M 1m40s\n426200K .......... .......... .......... .......... .......... 80% 1.21M 1m40s\n426250K .......... .......... .......... .......... .......... 80% 1.15M 1m40s\n426300K .......... .......... .......... .......... .......... 80% 1.19M 1m40s\n426350K .......... .......... .......... .......... .......... 80% 922K 1m40s\n426400K .......... .......... .......... .......... .......... 80% 1.17M 1m40s\n426450K .......... .......... .......... .......... .......... 80% 1.17M 1m40s\n426500K .......... .......... .......... .......... .......... 80% 1.24M 1m40s\n426550K .......... .......... .......... .......... .......... 80% 1.19M 1m40s\n426600K .......... .......... .......... .......... .......... 80% 1.18M 1m40s\n426650K .......... .......... .......... .......... .......... 80% 1.19M 1m40s\n426700K .......... .......... .......... .......... .......... 80% 1.21M 99s\n426750K .......... .......... .......... .......... .......... 80% 894K 99s\n426800K .......... .......... .......... .......... .......... 80% 1.20M 99s\n426850K .......... .......... .......... .......... .......... 80% 1.19M 99s\n426900K .......... .......... .......... .......... .......... 80% 1.20M 99s\n426950K .......... .......... .......... .......... .......... 80% 1.18M 99s\n427000K .......... .......... .......... .......... .......... 80% 1.08M 99s\n427050K .......... .......... .......... .......... .......... 80% 1.29M 99s\n427100K .......... .......... .......... .......... .......... 80% 1.06M 99s\n427150K .......... .......... .......... .......... .......... 80% 1017K 99s\n427200K .......... .......... .......... .......... .......... 80% 1.17M 99s\n427250K .......... .......... .......... .......... .......... 80% 1.20M 99s\n427300K .......... .......... .......... .......... .......... 80% 1.11M 99s\n427350K .......... .......... .......... .......... .......... 80% 1.16M 99s\n427400K .......... .......... .......... .......... .......... 80% 1.31M 99s\n427450K .......... .......... .......... .......... .......... 80% 1.18M 99s\n427500K .......... .......... .......... .......... .......... 80% 1.19M 99s\n427550K .......... .......... .......... .......... .......... 80% 901K 99s\n427600K .......... .......... .......... .......... .......... 80% 1.19M 99s\n427650K .......... .......... .......... .......... .......... 80% 1.18M 99s\n427700K .......... .......... .......... .......... .......... 80% 1.17M 99s\n427750K .......... .......... .......... .......... .......... 80% 1.23M 98s\n427800K .......... .......... .......... .......... .......... 80% 1.19M 98s\n427850K .......... .......... .......... .......... .......... 80% 1.18M 98s\n427900K .......... .......... .......... .......... .......... 80% 1.19M 98s\n427950K .......... .......... .......... .......... .......... 80% 918K 98s\n428000K .......... .......... .......... .......... .......... 80% 1.22M 98s\n428050K .......... .......... .......... .......... .......... 80% 1.18M 98s\n428100K .......... .......... .......... .......... .......... 80% 1.16M 98s\n428150K .......... .......... .......... .......... .......... 80% 1.21M 98s\n428200K .......... .......... .......... .......... .......... 80% 1.17M 98s\n428250K .......... .......... .......... .......... .......... 80% 1.20M 98s\n428300K .......... .......... .......... .......... .......... 80% 1.20M 98s\n428350K .......... .......... .......... .......... .......... 80% 893K 98s\n428400K .......... .......... .......... .......... .......... 80% 1.20M 98s\n428450K .......... .......... .......... .......... .......... 80% 1.19M 98s\n428500K .......... .......... .......... .......... .......... 80% 1.17M 98s\n428550K .......... .......... .......... .......... .......... 80% 1.17M 98s\n428600K .......... .......... .......... .......... .......... 80% 1.21M 98s\n428650K .......... .......... .......... .......... .......... 80% 1.20M 98s\n428700K .......... .......... .......... .......... .......... 80% 1.17M 98s\n428750K .......... .......... .......... .......... .......... 80% 930K 97s\n428800K .......... .......... .......... .......... .......... 80% 1.18M 97s\n428850K .......... .......... .......... .......... .......... 80% 1.16M 97s\n428900K .......... .......... .......... .......... .......... 80% 1.23M 97s\n428950K .......... .......... .......... .......... .......... 80% 1.17M 97s\n429000K .......... .......... .......... .......... .......... 80% 1.19M 97s\n429050K .......... .......... .......... .......... .......... 80% 1.18M 97s\n429100K .......... .......... .......... .......... .......... 80% 1.16M 97s\n429150K .......... .......... .......... .......... .......... 80% 955K 97s\n429200K .......... .......... .......... .......... .......... 80% 1.19M 97s\n429250K .......... .......... .......... .......... .......... 80% 1.13M 97s\n429300K .......... .......... .......... .......... .......... 80% 1.17M 97s\n429350K .......... .......... .......... .......... .......... 80% 1.21M 97s\n429400K .......... .......... .......... .......... .......... 80% 1.17M 97s\n429450K .......... .......... .......... .......... .......... 80% 1.19M 97s\n429500K .......... .......... .......... .......... .......... 80% 161K 97s\n429550K .......... .......... .......... .......... .......... 80% 190M 97s\n429600K .......... .......... .......... .......... .......... 80% 1.50M 97s\n429650K .......... .......... .......... .......... .......... 80% 255M 97s\n429700K .......... .......... .......... .......... .......... 80% 65.2M 97s\n429750K .......... .......... .......... .......... .......... 80% 1.00M 97s\n429800K .......... .......... .......... .......... .......... 80% 1.13M 97s\n429850K .......... .......... .......... .......... .......... 80% 1.22M 96s\n429900K .......... .......... .......... .......... .......... 80% 1.23M 96s\n429950K .......... .......... .......... .......... .......... 80% 910K 96s\n430000K .......... .......... .......... .......... .......... 80% 1.15M 96s\n430050K .......... .......... .......... .......... .......... 80% 1.24M 96s\n430100K .......... .......... .......... .......... .......... 80% 1.19M 96s\n430150K .......... .......... .......... .......... .......... 80% 1.17M 96s\n430200K .......... .......... .......... .......... .......... 80% 1.21M 96s\n430250K .......... .......... .......... .......... .......... 80% 1.16M 96s\n430300K .......... .......... .......... .......... .......... 80% 1.22M 96s\n430350K .......... .......... .......... .......... .......... 80% 848K 96s\n430400K .......... .......... .......... .......... .......... 80% 196K 96s\n430450K .......... .......... .......... .......... .......... 80% 138M 96s\n430500K .......... .......... .......... .......... .......... 80% 93.6M 96s\n430550K .......... .......... .......... .......... .......... 80% 14.6M 96s\n430600K .......... .......... .......... .......... .......... 80% 7.63M 96s\n430650K .......... .......... .......... .......... .......... 80% 25.7M 96s\n430700K .......... .......... .......... .......... .......... 80% 1.39M 96s\n430750K .......... .......... .......... .......... .......... 80% 926K 96s\n430800K .......... .......... .......... .......... .......... 81% 1.18M 96s\n430850K .......... .......... .......... .......... .......... 81% 1.12M 95s\n430900K .......... .......... .......... .......... .......... 81% 1.27M 95s\n430950K .......... .......... .......... .......... .......... 81% 1.23M 95s\n431000K .......... .......... .......... .......... .......... 81% 1.12M 95s\n431050K .......... .......... .......... .......... .......... 81% 1.21M 95s\n431100K .......... .......... .......... .......... .......... 81% 1.20M 95s\n431150K .......... .......... .......... .......... .......... 81% 934K 95s\n431200K .......... .......... .......... .......... .......... 81% 1.17M 95s\n431250K .......... .......... .......... .......... .......... 81% 1.16M 95s\n431300K .......... .......... .......... .......... .......... 81% 1.19M 95s\n431350K .......... .......... .......... .......... .......... 81% 1.21M 95s\n431400K .......... .......... .......... .......... .......... 81% 1.17M 95s\n431450K .......... .......... .......... .......... .......... 81% 1.15M 95s\n431500K .......... .......... .......... .......... .......... 81% 1.27M 95s\n431550K .......... .......... .......... .......... .......... 81% 904K 95s\n431600K .......... .......... .......... .......... .......... 81% 1.16M 95s\n431650K .......... .......... .......... .......... .......... 81% 1.20M 95s\n431700K .......... .......... .......... .......... .......... 81% 188K 95s\n431750K .......... .......... .......... .......... .......... 81% 158M 95s\n431800K .......... .......... .......... .......... .......... 81% 525M 95s\n431850K .......... .......... .......... .......... .......... 81% 24.7M 95s\n431900K .......... .......... .......... .......... .......... 81% 469M 94s\n431950K .......... .......... .......... .......... .......... 81% 40.5M 94s\n432000K .......... .......... .......... .......... .......... 81% 821K 94s\n432050K .......... .......... .......... .......... .......... 81% 1.29M 94s\n432100K .......... .......... .......... .......... .......... 81% 1.13M 94s\n432150K .......... .......... .......... .......... .......... 81% 1.23M 94s\n432200K .......... .......... .......... .......... .......... 81% 1.11M 94s\n432250K .......... .......... .......... .......... .......... 81% 1.26M 94s\n432300K .......... .......... .......... .......... .......... 81% 1.17M 94s\n432350K .......... .......... .......... .......... .......... 81% 933K 94s\n432400K .......... .......... .......... .......... .......... 81% 1.16M 94s\n432450K .......... .......... .......... .......... .......... 81% 1.20M 94s\n432500K .......... .......... .......... .......... .......... 81% 1.11M 94s\n432550K .......... .......... .......... .......... .......... 81% 1.28M 94s\n432600K .......... .......... .......... .......... .......... 81% 1.17M 94s\n432650K .......... .......... .......... .......... .......... 81% 1.18M 94s\n432700K .......... .......... .......... .......... .......... 81% 1.17M 94s\n432750K .......... .......... .......... .......... .......... 81% 947K 94s\n432800K .......... .......... .......... .......... .......... 81% 1.21M 94s\n432850K .......... .......... .......... .......... .......... 81% 1.13M 94s\n432900K .......... .......... .......... .......... .......... 81% 1.23M 94s\n432950K .......... .......... .......... .......... .......... 81% 1.21M 93s\n433000K .......... .......... .......... .......... .......... 81% 1.16M 93s\n433050K .......... .......... .......... .......... .......... 81% 1.20M 93s\n433100K .......... .......... .......... .......... .......... 81% 1.15M 93s\n433150K .......... .......... .......... .......... .......... 81% 913K 93s\n433200K .......... .......... .......... .......... .......... 81% 1.21M 93s\n433250K .......... .......... .......... .......... .......... 81% 1.17M 93s\n433300K .......... .......... .......... .......... .......... 81% 1.20M 93s\n433350K .......... .......... .......... .......... .......... 81% 1.15M 93s\n433400K .......... .......... .......... .......... .......... 81% 1.23M 93s\n433450K .......... .......... .......... .......... .......... 81% 1.13M 93s\n433500K .......... .......... .......... .......... .......... 81% 1.25M 93s\n433550K .......... .......... .......... .......... .......... 81% 901K 93s\n433600K .......... .......... .......... .......... .......... 81% 1.17M 93s\n433650K .......... .......... .......... .......... .......... 81% 1.20M 93s\n433700K .......... .......... .......... .......... .......... 81% 1.22M 93s\n433750K .......... .......... .......... .......... .......... 81% 1.17M 93s\n433800K .......... .......... .......... .......... .......... 81% 1.18M 93s\n433850K .......... .......... .......... .......... .......... 81% 1.10M 93s\n433900K .......... .......... .......... .......... .......... 81% 1.32M 93s\n433950K .......... .......... .......... .......... .......... 81% 887K 93s\n434000K .......... .......... .......... .......... .......... 81% 1.20M 92s\n434050K .......... .......... .......... .......... .......... 81% 1.18M 92s\n434100K .......... .......... .......... .......... .......... 81% 1.19M 92s\n434150K .......... .......... .......... .......... .......... 81% 1.18M 92s\n434200K .......... .......... .......... .......... .......... 81% 1.15M 92s\n434250K .......... .......... .......... .......... .......... 81% 1.20M 92s\n434300K .......... .......... .......... .......... .......... 81% 1.19M 92s\n434350K .......... .......... .......... .......... .......... 81% 938K 92s\n434400K .......... .......... .......... .......... .......... 81% 1.18M 92s\n434450K .......... .......... .......... .......... .......... 81% 1.13M 92s\n434500K .......... .......... .......... .......... .......... 81% 1.15M 92s\n434550K .......... .......... .......... .......... .......... 81% 1.31M 92s\n434600K .......... .......... .......... .......... .......... 81% 1.16M 92s\n434650K .......... .......... .......... .......... .......... 81% 1.13M 92s\n434700K .......... .......... .......... .......... .......... 81% 1.18M 92s\n434750K .......... .......... .......... .......... .......... 81% 952K 92s\n434800K .......... .......... .......... .......... .......... 81% 1.20M 92s\n434850K .......... .......... .......... .......... .......... 81% 1.17M 92s\n434900K .......... .......... .......... .......... .......... 81% 1.19M 92s\n434950K .......... .......... .......... .......... .......... 81% 1.19M 92s\n435000K .......... .......... .......... .......... .......... 81% 1.11M 91s\n435050K .......... .......... .......... .......... .......... 81% 1.18M 91s\n435100K .......... .......... .......... .......... .......... 81% 1.27M 91s\n435150K .......... .......... .......... .......... .......... 81% 886K 91s\n435200K .......... .......... .......... .......... .......... 81% 1.20M 91s\n435250K .......... .......... .......... .......... .......... 81% 1.21M 91s\n435300K .......... .......... .......... .......... .......... 81% 1.24M 91s\n435350K .......... .......... .......... .......... .......... 81% 1.19M 91s\n435400K .......... .......... .......... .......... .......... 81% 1.16M 91s\n435450K .......... .......... .......... .......... .......... 81% 1.19M 91s\n435500K .......... .......... .......... .......... .......... 81% 1.20M 91s\n435550K .......... .......... .......... .......... .......... 81% 918K 91s\n435600K .......... .......... .......... .......... .......... 81% 1.18M 91s\n435650K .......... .......... .......... .......... .......... 81% 1.19M 91s\n435700K .......... .......... .......... .......... .......... 81% 1.15M 91s\n435750K .......... .......... .......... .......... .......... 81% 1.21M 91s\n435800K .......... .......... .......... .......... .......... 81% 1.20M 91s\n435850K .......... .......... .......... .......... .......... 81% 1.09M 91s\n435900K .......... .......... .......... .......... .......... 81% 1.22M 91s\n435950K .......... .......... .......... .......... .......... 81% 955K 91s\n436000K .......... .......... .......... .......... .......... 81% 1.18M 91s\n436050K .......... .......... .......... .......... .......... 81% 1.18M 90s\n436100K .......... .......... .......... .......... .......... 82% 1.13M 90s\n436150K .......... .......... .......... .......... .......... 82% 1.19M 90s\n436200K .......... .......... .......... .......... .......... 82% 1.19M 90s\n436250K .......... .......... .......... .......... .......... 82% 1.19M 90s\n436300K .......... .......... .......... .......... .......... 82% 1.22M 90s\n436350K .......... .......... .......... .......... .......... 82% 893K 90s\n436400K .......... .......... .......... .......... .......... 82% 1.20M 90s\n436450K .......... .......... .......... .......... .......... 82% 1.20M 90s\n436500K .......... .......... .......... .......... .......... 82% 1.15M 90s\n436550K .......... .......... .......... .......... .......... 82% 1.22M 90s\n436600K .......... .......... .......... .......... .......... 82% 1.17M 90s\n436650K .......... .......... .......... .......... .......... 82% 1.20M 90s\n436700K .......... .......... .......... .......... .......... 82% 1.22M 90s\n436750K .......... .......... .......... .......... .......... 82% 877K 90s\n436800K .......... .......... .......... .......... .......... 82% 1.18M 90s\n436850K .......... .......... .......... .......... .......... 82% 1.20M 90s\n436900K .......... .......... .......... .......... .......... 82% 1.20M 90s\n436950K .......... .......... .......... .......... .......... 82% 1.19M 90s\n437000K .......... .......... .......... .......... .......... 82% 1.15M 90s\n437050K .......... .......... .......... .......... .......... 82% 1.23M 90s\n437100K .......... .......... .......... .......... .......... 82% 1.17M 89s\n437150K .......... .......... .......... .......... .......... 82% 912K 89s\n437200K .......... .......... .......... .......... .......... 82% 1.20M 89s\n437250K .......... .......... .......... .......... .......... 82% 1.20M 89s\n437300K .......... .......... .......... .......... .......... 82% 1.18M 89s\n437350K .......... .......... .......... .......... .......... 82% 1.18M 89s\n437400K .......... .......... .......... .......... .......... 82% 1.15M 89s\n437450K .......... .......... .......... .......... .......... 82% 1.20M 89s\n437500K .......... .......... .......... .......... .......... 82% 1.23M 89s\n437550K .......... .......... .......... .......... .......... 82% 935K 89s\n437600K .......... .......... .......... .......... .......... 82% 1.14M 89s\n437650K .......... .......... .......... .......... .......... 82% 1.21M 89s\n437700K .......... .......... .......... .......... .......... 82% 1.18M 89s\n437750K .......... .......... .......... .......... .......... 82% 1.19M 89s\n437800K .......... .......... .......... .......... .......... 82% 1.19M 89s\n437850K .......... .......... .......... .......... .......... 82% 1.20M 89s\n437900K .......... .......... .......... .......... .......... 82% 1.17M 89s\n437950K .......... .......... .......... .......... .......... 82% 895K 89s\n438000K .......... .......... .......... .......... .......... 82% 1.17M 89s\n438050K .......... .......... .......... .......... .......... 82% 1.22M 89s\n438100K .......... .......... .......... .......... .......... 82% 1.18M 89s\n438150K .......... .......... .......... .......... .......... 82% 1.17M 88s\n438200K .......... .......... .......... .......... .......... 82% 1.20M 88s\n438250K .......... .......... .......... .......... .......... 82% 1.19M 88s\n438300K .......... .......... .......... .......... .......... 82% 1.18M 88s\n438350K .......... .......... .......... .......... .......... 82% 926K 88s\n438400K .......... .......... .......... .......... .......... 82% 1.18M 88s\n438450K .......... .......... .......... .......... .......... 82% 1.16M 88s\n438500K .......... .......... .......... .......... .......... 82% 1.20M 88s\n438550K .......... .......... .......... .......... .......... 82% 1.18M 88s\n438600K .......... .......... .......... .......... .......... 82% 1.16M 88s\n438650K .......... .......... .......... .......... .......... 82% 1.24M 88s\n438700K .......... .......... .......... .......... .......... 82% 1.15M 88s\n438750K .......... .......... .......... .......... .......... 82% 155K 88s\n438800K .......... .......... .......... .......... .......... 82% 50.9M 88s\n438850K .......... .......... .......... .......... .......... 82% 56.5M 88s\n438900K .......... .......... .......... .......... .......... 82% 80.5M 88s\n438950K .......... .......... .......... .......... .......... 82% 1.56M 88s\n439000K .......... .......... .......... .......... .......... 82% 163M 88s\n439050K .......... .......... .......... .......... .......... 82% 1.08M 88s\n439100K .......... .......... .......... .......... .......... 82% 1.19M 88s\n439150K .......... .......... .......... .......... .......... 82% 875K 88s\n439200K .......... .......... .......... .......... .......... 82% 1.27M 87s\n439250K .......... .......... .......... .......... .......... 82% 1.18M 87s\n439300K .......... .......... .......... .......... .......... 82% 1.17M 87s\n439350K .......... .......... .......... .......... .......... 82% 1.18M 87s\n439400K .......... .......... .......... .......... .......... 82% 1.17M 87s\n439450K .......... .......... .......... .......... .......... 82% 1.19M 87s\n439500K .......... .......... .......... .......... .......... 82% 1.12M 87s\n439550K .......... .......... .......... .......... .......... 82% 697K 87s\n439600K .......... .......... .......... .......... .......... 82% 2.39M 87s\n439650K .......... .......... .......... .......... .......... 82% 1.14M 87s\n439700K .......... .......... .......... .......... .......... 82% 1.23M 87s\n439750K .......... .......... .......... .......... .......... 82% 202K 87s\n439800K .......... .......... .......... .......... .......... 82% 117M 87s\n439850K .......... .......... .......... .......... .......... 82% 25.7M 87s\n439900K .......... .......... .......... .......... .......... 82% 14.2M 87s\n439950K .......... .......... .......... .......... .......... 82% 8.55M 87s\n440000K .......... .......... .......... .......... .......... 82% 2.32M 87s\n440050K .......... .......... .......... .......... .......... 82% 1.21M 87s\n440100K .......... .......... .......... .......... .......... 82% 1.19M 87s\n440150K .......... .......... .......... .......... .......... 82% 1.22M 87s\n440200K .......... .......... .......... .......... .......... 82% 1.15M 87s\n440250K .......... .......... .......... .......... .......... 82% 1.18M 86s\n440300K .......... .......... .......... .......... .......... 82% 1.22M 86s\n440350K .......... .......... .......... .......... .......... 82% 911K 86s\n440400K .......... .......... .......... .......... .......... 82% 1.17M 86s\n440450K .......... .......... .......... .......... .......... 82% 1.20M 86s\n440500K .......... .......... .......... .......... .......... 82% 1.17M 86s\n440550K .......... .......... .......... .......... .......... 82% 1.20M 86s\n440600K .......... .......... .......... .......... .......... 82% 1.21M 86s\n440650K .......... .......... .......... .......... .......... 82% 1.15M 86s\n440700K .......... .......... .......... .......... .......... 82% 1.21M 86s\n440750K .......... .......... .......... .......... .......... 82% 922K 86s\n440800K .......... .......... .......... .......... .......... 82% 1.17M 86s\n440850K .......... .......... .......... .......... .......... 82% 175K 86s\n440900K .......... .......... .......... .......... .......... 82% 110M 86s\n440950K .......... .......... .......... .......... .......... 82% 153M 86s\n441000K .......... .......... .......... .......... .......... 82% 1.48M 86s\n441050K .......... .......... .......... .......... .......... 82% 79.1M 86s\n441100K .......... .......... .......... .......... .......... 82% 67.4M 86s\n441150K .......... .......... .......... .......... .......... 82% 649K 86s\n441200K .......... .......... .......... .......... .......... 82% 1.16M 86s\n441250K .......... .......... .......... .......... .......... 82% 1.20M 86s\n441300K .......... .......... .......... .......... .......... 82% 1.18M 85s\n441350K .......... .......... .......... .......... .......... 82% 1.22M 85s\n441400K .......... .......... .......... .......... .......... 83% 1.17M 85s\n441450K .......... .......... .......... .......... .......... 83% 1.18M 85s\n441500K .......... .......... .......... .......... .......... 83% 1.21M 85s\n441550K .......... .......... .......... .......... .......... 83% 914K 85s\n441600K .......... .......... .......... .......... .......... 83% 1.22M 85s\n441650K .......... .......... .......... .......... .......... 83% 1.17M 85s\n441700K .......... .......... .......... .......... .......... 83% 1.12M 85s\n441750K .......... .......... .......... .......... .......... 83% 1.25M 85s\n441800K .......... .......... .......... .......... .......... 83% 198K 85s\n441850K .......... .......... .......... .......... .......... 83% 16.7M 85s\n441900K .......... .......... .......... .......... .......... 83% 142M 85s\n441950K .......... .......... .......... .......... .......... 83% 9.23M 85s\n442000K .......... .......... .......... .......... .......... 83% 27.9M 85s\n442050K .......... .......... .......... .......... .......... 83% 8.64M 85s\n442100K .......... .......... .......... .......... .......... 83% 1.02M 85s\n442150K .......... .......... .......... .......... .......... 83% 1.18M 85s\n442200K .......... .......... .......... .......... .......... 83% 1.17M 85s\n442250K .......... .......... .......... .......... .......... 83% 1.20M 85s\n442300K .......... .......... .......... .......... .......... 83% 1.14M 85s\n442350K .......... .......... .......... .......... .......... 83% 888K 84s\n442400K .......... .......... .......... .......... .......... 83% 1.26M 84s\n442450K .......... .......... .......... .......... .......... 83% 1.19M 84s\n442500K .......... .......... .......... .......... .......... 83% 1.19M 84s\n442550K .......... .......... .......... .......... .......... 83% 1.18M 84s\n442600K .......... .......... .......... .......... .......... 83% 1.17M 84s\n442650K .......... .......... .......... .......... .......... 83% 1.16M 84s\n442700K .......... .......... .......... .......... .......... 83% 1.22M 84s\n442750K .......... .......... .......... .......... .......... 83% 928K 84s\n442800K .......... .......... .......... .......... .......... 83% 1.17M 84s\n442850K .......... .......... .......... .......... .......... 83% 1.22M 84s\n442900K .......... .......... .......... .......... .......... 83% 1.15M 84s\n442950K .......... .......... .......... .......... .......... 83% 191K 84s\n443000K .......... .......... .......... .......... .......... 83% 55.1M 84s\n443050K .......... .......... .......... .......... .......... 83% 244M 84s\n443100K .......... .......... .......... .......... .......... 83% 18.4M 84s\n443150K .......... .......... .......... .......... .......... 83% 340M 84s\n443200K .......... .......... .......... .......... .......... 83% 77.5M 84s\n443250K .......... .......... .......... .......... .......... 83% 797K 84s\n443300K .......... .......... .......... .......... .......... 83% 1.22M 84s\n443350K .......... .......... .......... .......... .......... 83% 1.10M 84s\n443400K .......... .......... .......... .......... .......... 83% 1.28M 83s\n443450K .......... .......... .......... .......... .......... 83% 1.20M 83s\n443500K .......... .......... .......... .......... .......... 83% 1.19M 83s\n443550K .......... .......... .......... .......... .......... 83% 884K 83s\n443600K .......... .......... .......... .......... .......... 83% 1.21M 83s\n443650K .......... .......... .......... .......... .......... 83% 1.18M 83s\n443700K .......... .......... .......... .......... .......... 83% 1.14M 83s\n443750K .......... .......... .......... .......... .......... 83% 1.25M 83s\n443800K .......... .......... .......... .......... .......... 83% 1.20M 83s\n443850K .......... .......... .......... .......... .......... 83% 1.19M 83s\n443900K .......... .......... .......... .......... .......... 83% 1.15M 83s\n443950K .......... .......... .......... .......... .......... 83% 910K 83s\n444000K .......... .......... .......... .......... .......... 83% 1.20M 83s\n444050K .......... .......... .......... .......... .......... 83% 1.12M 83s\n444100K .......... .......... .......... .......... .......... 83% 1.34M 83s\n444150K .......... .......... .......... .......... .......... 83% 1.18M 83s\n444200K .......... .......... .......... .......... .......... 83% 1.19M 83s\n444250K .......... .......... .......... .......... .......... 83% 1.15M 83s\n444300K .......... .......... .......... .......... .......... 83% 1.25M 83s\n444350K .......... .......... .......... .......... .......... 83% 886K 83s\n444400K .......... .......... .......... .......... .......... 83% 1.17M 82s\n444450K .......... .......... .......... .......... .......... 83% 1.19M 82s\n444500K .......... .......... .......... .......... .......... 83% 1.17M 82s\n444550K .......... .......... .......... .......... .......... 83% 1.24M 82s\n444600K .......... .......... .......... .......... .......... 83% 1.19M 82s\n444650K .......... .......... .......... .......... .......... 83% 1.16M 82s\n444700K .......... .......... .......... .......... .......... 83% 1.13M 82s\n444750K .......... .......... .......... .......... .......... 83% 969K 82s\n444800K .......... .......... .......... .......... .......... 83% 1.18M 82s\n444850K .......... .......... .......... .......... .......... 83% 1.19M 82s\n444900K .......... .......... .......... .......... .......... 83% 1.21M 82s\n444950K .......... .......... .......... .......... .......... 83% 1.10M 82s\n445000K .......... .......... .......... .......... .......... 83% 1.23M 82s\n445050K .......... .......... .......... .......... .......... 83% 1.23M 82s\n445100K .......... .......... .......... .......... .......... 83% 1.18M 82s\n445150K .......... .......... .......... .......... .......... 83% 910K 82s\n445200K .......... .......... .......... .......... .......... 83% 1.18M 82s\n445250K .......... .......... .......... .......... .......... 83% 941K 82s\n445300K .......... .......... .......... .......... .......... 83% 1.73M 82s\n445350K .......... .......... .......... .......... .......... 83% 1.17M 82s\n445400K .......... .......... .......... .......... .......... 83% 1.10M 82s\n445450K .......... .......... .......... .......... .......... 83% 1.30M 81s\n445500K .......... .......... .......... .......... .......... 83% 1.16M 81s\n445550K .......... .......... .......... .......... .......... 83% 899K 81s\n445600K .......... .......... .......... .......... .......... 83% 1.19M 81s\n445650K .......... .......... .......... .......... .......... 83% 1.21M 81s\n445700K .......... .......... .......... .......... .......... 83% 1.19M 81s\n445750K .......... .......... .......... .......... .......... 83% 1.15M 81s\n445800K .......... .......... .......... .......... .......... 83% 1.20M 81s\n445850K .......... .......... .......... .......... .......... 83% 1.20M 81s\n445900K .......... .......... .......... .......... .......... 83% 1.19M 81s\n445950K .......... .......... .......... .......... .......... 83% 905K 81s\n446000K .......... .......... .......... .......... .......... 83% 1.19M 81s\n446050K .......... .......... .......... .......... .......... 83% 1.21M 81s\n446100K .......... .......... .......... .......... .......... 83% 1.17M 81s\n446150K .......... .......... .......... .......... .......... 83% 1.21M 81s\n446200K .......... .......... .......... .......... .......... 83% 1.19M 81s\n446250K .......... .......... .......... .......... .......... 83% 1.18M 81s\n446300K .......... .......... .......... .......... .......... 83% 1.18M 81s\n446350K .......... .......... .......... .......... .......... 83% 911K 81s\n446400K .......... .......... .......... .......... .......... 83% 1.20M 81s\n446450K .......... .......... .......... .......... .......... 83% 1.15M 81s\n446500K .......... .......... .......... .......... .......... 83% 1.17M 80s\n446550K .......... .......... .......... .......... .......... 83% 1.23M 80s\n446600K .......... .......... .......... .......... .......... 83% 1.08M 80s\n446650K .......... .......... .......... .......... .......... 83% 1.34M 80s\n446700K .......... .......... .......... .......... .......... 83% 1.17M 80s\n446750K .......... .......... .......... .......... .......... 84% 914K 80s\n446800K .......... .......... .......... .......... .......... 84% 1.14M 80s\n446850K .......... .......... .......... .......... .......... 84% 1.24M 80s\n446900K .......... .......... .......... .......... .......... 84% 1.18M 80s\n446950K .......... .......... .......... .......... .......... 84% 1.19M 80s\n447000K .......... .......... .......... .......... .......... 84% 1.21M 80s\n447050K .......... .......... .......... .......... .......... 84% 1.17M 80s\n447100K .......... .......... .......... .......... .......... 84% 1.15M 80s\n447150K .......... .......... .......... .......... .......... 84% 952K 80s\n447200K .......... .......... .......... .......... .......... 84% 1.19M 80s\n447250K .......... .......... .......... .......... .......... 84% 1.19M 80s\n447300K .......... .......... .......... .......... .......... 84% 1.17M 80s\n447350K .......... .......... .......... .......... .......... 84% 1.15M 80s\n447400K .......... .......... .......... .......... .......... 84% 1.24M 80s\n447450K .......... .......... .......... .......... .......... 84% 1.17M 80s\n447500K .......... .......... .......... .......... .......... 84% 1.18M 80s\n447550K .......... .......... .......... .......... .......... 84% 918K 79s\n447600K .......... .......... .......... .......... .......... 84% 1.16M 79s\n447650K .......... .......... .......... .......... .......... 84% 1.18M 79s\n447700K .......... .......... .......... .......... .......... 84% 1.20M 79s\n447750K .......... .......... .......... .......... .......... 84% 1.21M 79s\n447800K .......... .......... .......... .......... .......... 84% 1.17M 79s\n447850K .......... .......... .......... .......... .......... 84% 1.20M 79s\n447900K .......... .......... .......... .......... .......... 84% 1.18M 79s\n447950K .......... .......... .......... .......... .......... 84% 890K 79s\n448000K .......... .......... .......... .......... .......... 84% 1.23M 79s\n448050K .......... .......... .......... .......... .......... 84% 1.21M 79s\n448100K .......... .......... .......... .......... .......... 84% 1.17M 79s\n448150K .......... .......... .......... .......... .......... 84% 1.21M 79s\n448200K .......... .......... .......... .......... .......... 84% 1.18M 79s\n448250K .......... .......... .......... .......... .......... 84% 1.22M 79s\n448300K .......... .......... .......... .......... .......... 84% 1.17M 79s\n448350K .......... .......... .......... .......... .......... 84% 916K 79s\n448400K .......... .......... .......... .......... .......... 84% 1.20M 79s\n448450K .......... .......... .......... .......... .......... 84% 1.18M 79s\n448500K .......... .......... .......... .......... .......... 84% 1.19M 79s\n448550K .......... .......... .......... .......... .......... 84% 1.17M 79s\n448600K .......... .......... .......... .......... .......... 84% 1.20M 78s\n448650K .......... .......... .......... .......... .......... 84% 1.16M 78s\n448700K .......... .......... .......... .......... .......... 84% 1.16M 78s\n448750K .......... .......... .......... .......... .......... 84% 927K 78s\n448800K .......... .......... .......... .......... .......... 84% 1.16M 78s\n448850K .......... .......... .......... .......... .......... 84% 1.18M 78s\n448900K .......... .......... .......... .......... .......... 84% 1.21M 78s\n448950K .......... .......... .......... .......... .......... 84% 1.20M 78s\n449000K .......... .......... .......... .......... .......... 84% 1.06M 78s\n449050K .......... .......... .......... .......... .......... 84% 1.12M 78s\n449100K .......... .......... .......... .......... .......... 84% 1.30M 78s\n449150K .......... .......... .......... .......... .......... 84% 911K 78s\n449200K .......... .......... .......... .......... .......... 84% 1.17M 78s\n449250K .......... .......... .......... .......... .......... 84% 1.20M 78s\n449300K .......... .......... .......... .......... .......... 84% 1.20M 78s\n449350K .......... .......... .......... .......... .......... 84% 1.19M 78s\n449400K .......... .......... .......... .......... .......... 84% 1.18M 78s\n449450K .......... .......... .......... .......... .......... 84% 1.11M 78s\n449500K .......... .......... .......... .......... .......... 84% 1.27M 78s\n449550K .......... .......... .......... .......... .......... 84% 897K 78s\n449600K .......... .......... .......... .......... .......... 84% 1.21M 78s\n449650K .......... .......... .......... .......... .......... 84% 1.16M 77s\n449700K .......... .......... .......... .......... .......... 84% 1.22M 77s\n449750K .......... .......... .......... .......... .......... 84% 1.16M 77s\n449800K .......... .......... .......... .......... .......... 84% 1.15M 77s\n449850K .......... .......... .......... .......... .......... 84% 1.21M 77s\n449900K .......... .......... .......... .......... .......... 84% 1.19M 77s\n449950K .......... .......... .......... .......... .......... 84% 940K 77s\n450000K .......... .......... .......... .......... .......... 84% 1.19M 77s\n450050K .......... .......... .......... .......... .......... 84% 1.10M 77s\n450100K .......... .......... .......... .......... .......... 84% 1.23M 77s\n450150K .......... .......... .......... .......... .......... 84% 1.20M 77s\n450200K .......... .......... .......... .......... .......... 84% 166K 77s\n450250K .......... .......... .......... .......... .......... 84% 124M 77s\n450300K .......... .......... .......... .......... .......... 84% 459M 77s\n450350K .......... .......... .......... .......... .......... 84% 1.48M 77s\n450400K .......... .......... .......... .......... .......... 84% 74.4M 77s\n450450K .......... .......... .......... .......... .......... 84% 126M 77s\n450500K .......... .......... .......... .......... .......... 84% 809K 77s\n450550K .......... .......... .......... .......... .......... 84% 1.20M 77s\n450600K .......... .......... .......... .......... .......... 84% 1.19M 77s\n450650K .......... .......... .......... .......... .......... 84% 1.17M 77s\n450700K .......... .......... .......... .......... .......... 84% 1.20M 76s\n450750K .......... .......... .......... .......... .......... 84% 918K 76s\n450800K .......... .......... .......... .......... .......... 84% 1.05M 76s\n450850K .......... .......... .......... .......... .......... 84% 1.30M 76s\n450900K .......... .......... .......... .......... .......... 84% 1.16M 76s\n450950K .......... .......... .......... .......... .......... 84% 1.27M 76s\n451000K .......... .......... .......... .......... .......... 84% 1.13M 76s\n451050K .......... .......... .......... .......... .......... 84% 1.22M 76s\n451100K .......... .......... .......... .......... .......... 84% 1.18M 76s\n451150K .......... .......... .......... .......... .......... 84% 158K 76s\n451200K .......... .......... .......... .......... .......... 84% 298M 76s\n451250K .......... .......... .......... .......... .......... 84% 379M 76s\n451300K .......... .......... .......... .......... .......... 84% 1.42M 76s\n451350K .......... .......... .......... .......... .......... 84% 278M 76s\n451400K .......... .......... .......... .......... .......... 84% 318M 76s\n451450K .......... .......... .......... .......... .......... 84% 164K 76s\n451500K .......... .......... .......... .......... .......... 84% 1.90M 76s\n451550K .......... .......... .......... .......... .......... 84% 135M 76s\n451600K .......... .......... .......... .......... .......... 84% 240M 76s\n451650K .......... .......... .......... .......... .......... 84% 147M 76s\n451700K .......... .......... .......... .......... .......... 84% 469M 76s\n451750K .......... .......... .......... .......... .......... 84% 1.38M 75s\n451800K .......... .......... .......... .......... .......... 84% 1.20M 75s\n451850K .......... .......... .......... .......... .......... 84% 1.18M 75s\n451900K .......... .......... .......... .......... .......... 84% 1.20M 75s\n451950K .......... .......... .......... .......... .......... 84% 873K 75s\n452000K .......... .......... .......... .......... .......... 84% 1.17M 75s\n452050K .......... .......... .......... .......... .......... 85% 1.22M 75s\n452100K .......... .......... .......... .......... .......... 85% 1.19M 75s\n452150K .......... .......... .......... .......... .......... 85% 1.21M 75s\n452200K .......... .......... .......... .......... .......... 85% 1.17M 75s\n452250K .......... .......... .......... .......... .......... 85% 1.15M 75s\n452300K .......... .......... .......... .......... .......... 85% 1.21M 75s\n452350K .......... .......... .......... .......... .......... 85% 904K 75s\n452400K .......... .......... .......... .......... .......... 85% 1.17M 75s\n452450K .......... .......... .......... .......... .......... 85% 1.19M 75s\n452500K .......... .......... .......... .......... .......... 85% 1.22M 75s\n452550K .......... .......... .......... .......... .......... 85% 1.19M 75s\n452600K .......... .......... .......... .......... .......... 85% 1.20M 75s\n452650K .......... .......... .......... .......... .......... 85% 1.21M 75s\n452700K .......... .......... .......... .......... .......... 85% 1.15M 75s\n452750K .......... .......... .......... .......... .......... 85% 844K 75s\n452800K .......... .......... .......... .......... .......... 85% 1.26M 74s\n452850K .......... .......... .......... .......... .......... 85% 1.16M 74s\n452900K .......... .......... .......... .......... .......... 85% 1.27M 74s\n452950K .......... .......... .......... .......... .......... 85% 1.18M 74s\n453000K .......... .......... .......... .......... .......... 85% 1.08M 74s\n453050K .......... .......... .......... .......... .......... 85% 1.27M 74s\n453100K .......... .......... .......... .......... .......... 85% 1.29M 74s\n453150K .......... .......... .......... .......... .......... 85% 911K 74s\n453200K .......... .......... .......... .......... .......... 85% 1.18M 74s\n453250K .......... .......... .......... .......... .......... 85% 1.15M 74s\n453300K .......... .......... .......... .......... .......... 85% 1.18M 74s\n453350K .......... .......... .......... .......... .......... 85% 1.18M 74s\n453400K .......... .......... .......... .......... .......... 85% 1.22M 74s\n453450K .......... .......... .......... .......... .......... 85% 1.19M 74s\n453500K .......... .......... .......... .......... .......... 85% 1.18M 74s\n453550K .......... .......... .......... .......... .......... 85% 923K 74s\n453600K .......... .......... .......... .......... .......... 85% 1.16M 74s\n453650K .......... .......... .......... .......... .......... 85% 1.16M 74s\n453700K .......... .......... .......... .......... .......... 85% 1.22M 74s\n453750K .......... .......... .......... .......... .......... 85% 1.19M 74s\n453800K .......... .......... .......... .......... .......... 85% 1.17M 74s\n453850K .......... .......... .......... .......... .......... 85% 1.22M 73s\n453900K .......... .......... .......... .......... .......... 85% 1.18M 73s\n453950K .......... .......... .......... .......... .......... 85% 907K 73s\n454000K .......... .......... .......... .......... .......... 85% 1.15M 73s\n454050K .......... .......... .......... .......... .......... 85% 1.22M 73s\n454100K .......... .......... .......... .......... .......... 85% 1.20M 73s\n454150K .......... .......... .......... .......... .......... 85% 1.18M 73s\n454200K .......... .......... .......... .......... .......... 85% 1.17M 73s\n454250K .......... .......... .......... .......... .......... 85% 1.15M 73s\n454300K .......... .......... .......... .......... .......... 85% 1.21M 73s\n454350K .......... .......... .......... .......... .......... 85% 182K 73s\n454400K .......... .......... .......... .......... .......... 85% 71.1M 73s\n454450K .......... .......... .......... .......... .......... 85% 139M 73s\n454500K .......... .......... .......... .......... .......... 85% 1.54M 73s\n454550K .......... .......... .......... .......... .......... 85% 118M 73s\n454600K .......... .......... .......... .......... .......... 85% 1.13M 73s\n454650K .......... .......... .......... .......... .......... 85% 1.17M 73s\n454700K .......... .......... .......... .......... .......... 85% 1.21M 73s\n454750K .......... .......... .......... .......... .......... 85% 883K 73s\n454800K .......... .......... .......... .......... .......... 85% 1.20M 73s\n454850K .......... .......... .......... .......... .......... 85% 1.18M 73s\n454900K .......... .......... .......... .......... .......... 85% 1.22M 72s\n454950K .......... .......... .......... .......... .......... 85% 1.20M 72s\n455000K .......... .......... .......... .......... .......... 85% 1.16M 72s\n455050K .......... .......... .......... .......... .......... 85% 1.19M 72s\n455100K .......... .......... .......... .......... .......... 85% 1.21M 72s\n455150K .......... .......... .......... .......... .......... 85% 901K 72s\n455200K .......... .......... .......... .......... .......... 85% 1.16M 72s\n455250K .......... .......... .......... .......... .......... 85% 1.24M 72s\n455300K .......... .......... .......... .......... .......... 85% 1.20M 72s\n455350K .......... .......... .......... .......... .......... 85% 1.16M 72s\n455400K .......... .......... .......... .......... .......... 85% 207K 72s\n455450K .......... .......... .......... .......... .......... 85% 27.5M 72s\n455500K .......... .......... .......... .......... .......... 85% 168M 72s\n455550K .......... .......... .......... .......... .......... 85% 6.23M 72s\n455600K .......... .......... .......... .......... .......... 85% 8.38M 72s\n455650K .......... .......... .......... .......... .......... 85% 1.29M 72s\n455700K .......... .......... .......... .......... .......... 85% 1.22M 72s\n455750K .......... .......... .......... .......... .......... 85% 1.14M 72s\n455800K .......... .......... .......... .......... .......... 85% 1.30M 72s\n455850K .......... .......... .......... .......... .......... 85% 1.15M 72s\n455900K .......... .......... .......... .......... .......... 85% 1.19M 72s\n455950K .......... .......... .......... .......... .......... 85% 902K 71s\n456000K .......... .......... .......... .......... .......... 85% 1.15M 71s\n456050K .......... .......... .......... .......... .......... 85% 1.22M 71s\n456100K .......... .......... .......... .......... .......... 85% 1.15M 71s\n456150K .......... .......... .......... .......... .......... 85% 1.24M 71s\n456200K .......... .......... .......... .......... .......... 85% 193K 71s\n456250K .......... .......... .......... .......... .......... 85% 16.5M 71s\n456300K .......... .......... .......... .......... .......... 85% 92.8M 71s\n456350K .......... .......... .......... .......... .......... 85% 9.03M 71s\n456400K .......... .......... .......... .......... .......... 85% 93.4M 71s\n456450K .......... .......... .......... .......... .......... 85% 169M 71s\n456500K .......... .......... .......... .......... .......... 85% 796K 71s\n456550K .......... .......... .......... .......... .......... 85% 1.17M 71s\n456600K .......... .......... .......... .......... .......... 85% 1.17M 71s\n456650K .......... .......... .......... .......... .......... 85% 1.21M 71s\n456700K .......... .......... .......... .......... .......... 85% 1.20M 71s\n456750K .......... .......... .......... .......... .......... 85% 920K 71s\n456800K .......... .......... .......... .......... .......... 85% 1.15M 71s\n456850K .......... .......... .......... .......... .......... 85% 1.18M 71s\n456900K .......... .......... .......... .......... .......... 85% 1.19M 71s\n456950K .......... .......... .......... .......... .......... 85% 1.19M 71s\n457000K .......... .......... .......... .......... .......... 85% 1.23M 70s\n457050K .......... .......... .......... .......... .......... 85% 1.17M 70s\n457100K .......... .......... .......... .......... .......... 85% 1.20M 70s\n457150K .......... .......... .......... .......... .......... 85% 818K 70s\n457200K .......... .......... .......... .......... .......... 85% 1.39M 70s\n457250K .......... .......... .......... .......... .......... 85% 1.14M 70s\n457300K .......... .......... .......... .......... .......... 85% 1.24M 70s\n457350K .......... .......... .......... .......... .......... 86% 1000K 70s\n457400K .......... .......... .......... .......... .......... 86% 1.46M 70s\n457450K .......... .......... .......... .......... .......... 86% 1.17M 70s\n457500K .......... .......... .......... .......... .......... 86% 1.13M 70s\n457550K .......... .......... .......... .......... .......... 86% 901K 70s\n457600K .......... .......... .......... .......... .......... 86% 1.15M 70s\n457650K .......... .......... .......... .......... .......... 86% 1.07M 70s\n457700K .......... .......... .......... .......... .......... 86% 1.23M 70s\n457750K .......... .......... .......... .......... .......... 86% 1.16M 70s\n457800K .......... .......... .......... .......... .......... 86% 1.14M 70s\n457850K .......... .......... .......... .......... .......... 86% 1.12M 70s\n457900K .......... .......... .......... .......... .......... 86% 1.21M 70s\n457950K .......... .......... .......... .......... .......... 86% 980K 70s\n458000K .......... .......... .......... .......... .......... 86% 1.21M 70s\n458050K .......... .......... .......... .......... .......... 86% 1.15M 69s\n458100K .......... .......... .......... .......... .......... 86% 1.14M 69s\n458150K .......... .......... .......... .......... .......... 86% 1.22M 69s\n458200K .......... .......... .......... .......... .......... 86% 1.18M 69s\n458250K .......... .......... .......... .......... .......... 86% 1.11M 69s\n458300K .......... .......... .......... .......... .......... 86% 1.26M 69s\n458350K .......... .......... .......... .......... .......... 86% 906K 69s\n458400K .......... .......... .......... .......... .......... 86% 1.09M 69s\n458450K .......... .......... .......... .......... .......... 86% 1.28M 69s\n458500K .......... .......... .......... .......... .......... 86% 1.11M 69s\n458550K .......... .......... .......... .......... .......... 86% 1.25M 69s\n458600K .......... .......... .......... .......... .......... 86% 1.23M 69s\n458650K .......... .......... .......... .......... .......... 86% 1.19M 69s\n458700K .......... .......... .......... .......... .......... 86% 1.16M 69s\n458750K .......... .......... .......... .......... .......... 86% 931K 69s\n458800K .......... .......... .......... .......... .......... 86% 1.21M 69s\n458850K .......... .......... .......... .......... .......... 86% 1.16M 69s\n458900K .......... .......... .......... .......... .......... 86% 1.19M 69s\n458950K .......... .......... .......... .......... .......... 86% 1.19M 69s\n459000K .......... .......... .......... .......... .......... 86% 1.21M 69s\n459050K .......... .......... .......... .......... .......... 86% 1.16M 69s\n459100K .......... .......... .......... .......... .......... 86% 1.19M 68s\n459150K .......... .......... .......... .......... .......... 86% 882K 68s\n459200K .......... .......... .......... .......... .......... 86% 1.24M 68s\n459250K .......... .......... .......... .......... .......... 86% 1.21M 68s\n459300K .......... .......... .......... .......... .......... 86% 1.19M 68s\n459350K .......... .......... .......... .......... .......... 86% 1.14M 68s\n459400K .......... .......... .......... .......... .......... 86% 1.17M 68s\n459450K .......... .......... .......... .......... .......... 86% 1.20M 68s\n459500K .......... .......... .......... .......... .......... 86% 1.21M 68s\n459550K .......... .......... .......... .......... .......... 86% 912K 68s\n459600K .......... .......... .......... .......... .......... 86% 1.21M 68s\n459650K .......... .......... .......... .......... .......... 86% 1.15M 68s\n459700K .......... .......... .......... .......... .......... 86% 1.19M 68s\n459750K .......... .......... .......... .......... .......... 86% 1.18M 68s\n459800K .......... .......... .......... .......... .......... 86% 1.19M 68s\n459850K .......... .......... .......... .......... .......... 86% 1.21M 68s\n459900K .......... .......... .......... .......... .......... 86% 1.17M 68s\n459950K .......... .......... .......... .......... .......... 86% 935K 68s\n460000K .......... .......... .......... .......... .......... 86% 1.20M 68s\n460050K .......... .......... .......... .......... .......... 86% 1.17M 68s\n460100K .......... .......... .......... .......... .......... 86% 1.18M 68s\n460150K .......... .......... .......... .......... .......... 86% 1.20M 67s\n460200K .......... .......... .......... .......... .......... 86% 1.18M 67s\n460250K .......... .......... .......... .......... .......... 86% 1.20M 67s\n460300K .......... .......... .......... .......... .......... 86% 1.01M 67s\n460350K .......... .......... .......... .......... .......... 86% 1.01M 67s\n460400K .......... .......... .......... .......... .......... 86% 1.18M 67s\n460450K .......... .......... .......... .......... .......... 86% 1.05M 67s\n460500K .......... .......... .......... .......... .......... 86% 1.32M 67s\n460550K .......... .......... .......... .......... .......... 86% 1.22M 67s\n460600K .......... .......... .......... .......... .......... 86% 1.17M 67s\n460650K .......... .......... .......... .......... .......... 86% 1.16M 67s\n460700K .......... .......... .......... .......... .......... 86% 1.21M 67s\n460750K .......... .......... .......... .......... .......... 86% 898K 67s\n460800K .......... .......... .......... .......... .......... 86% 1.24M 67s\n460850K .......... .......... .......... .......... .......... 86% 1.11M 67s\n460900K .......... .......... .......... .......... .......... 86% 1.32M 67s\n460950K .......... .......... .......... .......... .......... 86% 1.20M 67s\n461000K .......... .......... .......... .......... .......... 86% 1.17M 67s\n461050K .......... .......... .......... .......... .......... 86% 1.16M 67s\n461100K .......... .......... .......... .......... .......... 86% 1.19M 67s\n461150K .......... .......... .......... .......... .......... 86% 939K 67s\n461200K .......... .......... .......... .......... .......... 86% 1.20M 66s\n461250K .......... .......... .......... .......... .......... 86% 1.12M 66s\n461300K .......... .......... .......... .......... .......... 86% 1.20M 66s\n461350K .......... .......... .......... .......... .......... 86% 1.17M 66s\n461400K .......... .......... .......... .......... .......... 86% 1.19M 66s\n461450K .......... .......... .......... .......... .......... 86% 1.20M 66s\n461500K .......... .......... .......... .......... .......... 86% 1.18M 66s\n461550K .......... .......... .......... .......... .......... 86% 891K 66s\n461600K .......... .......... .......... .......... .......... 86% 1.07M 66s\n461650K .......... .......... .......... .......... .......... 86% 1.34M 66s\n461700K .......... .......... .......... .......... .......... 86% 1.10M 66s\n461750K .......... .......... .......... .......... .......... 86% 1.21M 66s\n461800K .......... .......... .......... .......... .......... 86% 1.22M 66s\n461850K .......... .......... .......... .......... .......... 86% 1.13M 66s\n461900K .......... .......... .......... .......... .......... 86% 1.21M 66s\n461950K .......... .......... .......... .......... .......... 86% 964K 66s\n462000K .......... .......... .......... .......... .......... 86% 1.20M 66s\n462050K .......... .......... .......... .......... .......... 86% 1.18M 66s\n462100K .......... .......... .......... .......... .......... 86% 1.14M 66s\n462150K .......... .......... .......... .......... .......... 86% 1.24M 66s\n462200K .......... .......... .......... .......... .......... 86% 1.20M 66s\n462250K .......... .......... .......... .......... .......... 86% 1.18M 65s\n462300K .......... .......... .......... .......... .......... 86% 1.19M 65s\n462350K .......... .......... .......... .......... .......... 86% 898K 65s\n462400K .......... .......... .......... .......... .......... 86% 1.17M 65s\n462450K .......... .......... .......... .......... .......... 86% 1.18M 65s\n462500K .......... .......... .......... .......... .......... 86% 1.20M 65s\n462550K .......... .......... .......... .......... .......... 86% 1.21M 65s\n462600K .......... .......... .......... .......... .......... 86% 1.18M 65s\n462650K .......... .......... .......... .......... .......... 86% 1.20M 65s\n462700K .......... .......... .......... .......... .......... 87% 1.15M 65s\n462750K .......... .......... .......... .......... .......... 87% 925K 65s\n462800K .......... .......... .......... .......... .......... 87% 943K 65s\n462850K .......... .......... .......... .......... .......... 87% 1.69M 65s\n462900K .......... .......... .......... .......... .......... 87% 1.19M 65s\n462950K .......... .......... .......... .......... .......... 87% 1.18M 65s\n463000K .......... .......... .......... .......... .......... 87% 1.21M 65s\n463050K .......... .......... .......... .......... .......... 87% 1.16M 65s\n463100K .......... .......... .......... .......... .......... 87% 1.11M 65s\n463150K .......... .......... .......... .......... .......... 87% 955K 65s\n463200K .......... .......... .......... .......... .......... 87% 1.21M 65s\n463250K .......... .......... .......... .......... .......... 87% 1.16M 65s\n463300K .......... .......... .......... .......... .......... 87% 1.23M 64s\n463350K .......... .......... .......... .......... .......... 87% 1.15M 64s\n463400K .......... .......... .......... .......... .......... 87% 162K 64s\n463450K .......... .......... .......... .......... .......... 87% 133M 64s\n463500K .......... .......... .......... .......... .......... 87% 79.5M 64s\n463550K .......... .......... .......... .......... .......... 87% 502K 64s\n463600K .......... .......... .......... .......... .......... 87% 58.9M 64s\n463650K .......... .......... .......... .......... .......... 87% 1023K 64s\n463700K .......... .......... .......... .......... .......... 87% 1.30M 64s\n463750K .......... .......... .......... .......... .......... 87% 1.13M 64s\n463800K .......... .......... .......... .......... .......... 87% 1.22M 64s\n463850K .......... .......... .......... .......... .......... 87% 1.17M 64s\n463900K .......... .......... .......... .......... .......... 87% 1.09M 64s\n463950K .......... .......... .......... .......... .......... 87% 997K 64s\n464000K .......... .......... .......... .......... .......... 87% 1.05M 64s\n464050K .......... .......... .......... .......... .......... 87% 1.30M 64s\n464100K .......... .......... .......... .......... .......... 87% 1.27M 64s\n464150K .......... .......... .......... .......... .......... 87% 1.13M 64s\n464200K .......... .......... .......... .......... .......... 87% 1.18M 64s\n464250K .......... .......... .......... .......... .......... 87% 1.10M 64s\n464300K .......... .......... .......... .......... .......... 87% 1.33M 64s\n464350K .......... .......... .......... .......... .......... 87% 900K 64s\n464400K .......... .......... .......... .......... .......... 87% 1.24M 63s\n464450K .......... .......... .......... .......... .......... 87% 1.09M 63s\n464500K .......... .......... .......... .......... .......... 87% 1.27M 63s\n464550K .......... .......... .......... .......... .......... 87% 1.23M 63s\n464600K .......... .......... .......... .......... .......... 87% 1.15M 63s\n464650K .......... .......... .......... .......... .......... 87% 1.12M 63s\n464700K .......... .......... .......... .......... .......... 87% 1.26M 63s\n464750K .......... .......... .......... .......... .......... 87% 889K 63s\n464800K .......... .......... .......... .......... .......... 87% 1.22M 63s\n464850K .......... .......... .......... .......... .......... 87% 148K 63s\n464900K .......... .......... .......... .......... .......... 87% 324M 63s\n464950K .......... .......... .......... .......... .......... 87% 79.5M 63s\n465000K .......... .......... .......... .......... .......... 87% 487M 63s\n465050K .......... .......... .......... .......... .......... 87% 1.47M 63s\n465100K .......... .......... .......... .......... .......... 87% 439M 63s\n465150K .......... .......... .......... .......... .......... 87% 175K 63s\n465200K .......... .......... .......... .......... .......... 87% 3.53M 63s\n465250K .......... .......... .......... .......... .......... 87% 370M 63s\n465300K .......... .......... .......... .......... .......... 87% 149M 63s\n465350K .......... .......... .......... .......... .......... 87% 81.6M 63s\n465400K .......... .......... .......... .......... .......... 87% 162M 63s\n465450K .......... .......... .......... .......... .......... 87% 1.23M 62s\n465500K .......... .......... .......... .......... .......... 87% 1.19M 62s\n465550K .......... .......... .......... .......... .......... 87% 943K 62s\n465600K .......... .......... .......... .......... .......... 87% 1.13M 62s\n465650K .......... .......... .......... .......... .......... 87% 1.19M 62s\n465700K .......... .......... .......... .......... .......... 87% 1.19M 62s\n465750K .......... .......... .......... .......... .......... 87% 1.19M 62s\n465800K .......... .......... .......... .......... .......... 87% 1.16M 62s\n465850K .......... .......... .......... .......... .......... 87% 1.21M 62s\n465900K .......... .......... .......... .......... .......... 87% 1.19M 62s\n465950K .......... .......... .......... .......... .......... 87% 929K 62s\n466000K .......... .......... .......... .......... .......... 87% 1010K 62s\n466050K .......... .......... .......... .......... .......... 87% 1.48M 62s\n466100K .......... .......... .......... .......... .......... 87% 1.18M 62s\n466150K .......... .......... .......... .......... .......... 87% 1.21M 62s\n466200K .......... .......... .......... .......... .......... 87% 1.19M 62s\n466250K .......... .......... .......... .......... .......... 87% 1.16M 62s\n466300K .......... .......... .......... .......... .......... 87% 1.19M 62s\n466350K .......... .......... .......... .......... .......... 87% 941K 62s\n466400K .......... .......... .......... .......... .......... 87% 1.06M 62s\n466450K .......... .......... .......... .......... .......... 87% 1.29M 62s\n466500K .......... .......... .......... .......... .......... 87% 1.23M 61s\n466550K .......... .......... .......... .......... .......... 87% 1.18M 61s\n466600K .......... .......... .......... .......... .......... 87% 1.18M 61s\n466650K .......... .......... .......... .......... .......... 87% 1.19M 61s\n466700K .......... .......... .......... .......... .......... 87% 1.18M 61s\n466750K .......... .......... .......... .......... .......... 87% 904K 61s\n466800K .......... .......... .......... .......... .......... 87% 1.12M 61s\n466850K .......... .......... .......... .......... .......... 87% 1.22M 61s\n466900K .......... .......... .......... .......... .......... 87% 1.20M 61s\n466950K .......... .......... .......... .......... .......... 87% 1.20M 61s\n467000K .......... .......... .......... .......... .......... 87% 1.20M 61s\n467050K .......... .......... .......... .......... .......... 87% 1.16M 61s\n467100K .......... .......... .......... .......... .......... 87% 1.22M 61s\n467150K .......... .......... .......... .......... .......... 87% 915K 61s\n467200K .......... .......... .......... .......... .......... 87% 1.16M 61s\n467250K .......... .......... .......... .......... .......... 87% 1.19M 61s\n467300K .......... .......... .......... .......... .......... 87% 1.21M 61s\n467350K .......... .......... .......... .......... .......... 87% 1.17M 61s\n467400K .......... .......... .......... .......... .......... 87% 1.17M 61s\n467450K .......... .......... .......... .......... .......... 87% 1.19M 61s\n467500K .......... .......... .......... .......... .......... 87% 143K 61s\n467550K .......... .......... .......... .......... .......... 87% 1.32M 61s\n467600K .......... .......... .......... .......... .......... 87% 157M 60s\n467650K .......... .......... .......... .......... .......... 87% 1.42M 60s\n467700K .......... .......... .......... .......... .......... 87% 87.6M 60s\n467750K .......... .......... .......... .......... .......... 87% 170M 60s\n467800K .......... .......... .......... .......... .......... 87% 865K 60s\n467850K .......... .......... .......... .......... .......... 87% 1.29M 60s\n467900K .......... .......... .......... .......... .......... 87% 1.17M 60s\n467950K .......... .......... .......... .......... .......... 87% 902K 60s\n468000K .......... .......... .......... .......... .......... 88% 1.16M 60s\n468050K .......... .......... .......... .......... .......... 88% 1.21M 60s\n468100K .......... .......... .......... .......... .......... 88% 1.17M 60s\n468150K .......... .......... .......... .......... .......... 88% 1.22M 60s\n468200K .......... .......... .......... .......... .......... 88% 1.15M 60s\n468250K .......... .......... .......... .......... .......... 88% 1.20M 60s\n468300K .......... .......... .......... .......... .......... 88% 1.21M 60s\n468350K .......... .......... .......... .......... .......... 88% 916K 60s\n468400K .......... .......... .......... .......... .......... 88% 1.19M 60s\n468450K .......... .......... .......... .......... .......... 88% 1.19M 60s\n468500K .......... .......... .......... .......... .......... 88% 189K 60s\n468550K .......... .......... .......... .......... .......... 88% 103M 60s\n468600K .......... .......... .......... .......... .......... 88% 190M 60s\n468650K .......... .......... .......... .......... .......... 88% 316M 59s\n468700K .......... .......... .......... .......... .......... 88% 1.43M 59s\n468750K .......... .......... .......... .......... .......... 88% 120M 59s\n468800K .......... .......... .......... .......... .......... 88% 902K 59s\n468850K .......... .......... .......... .......... .......... 88% 1.19M 59s\n468900K .......... .......... .......... .......... .......... 88% 1.21M 59s\n468950K .......... .......... .......... .......... .......... 88% 1.15M 59s\n469000K .......... .......... .......... .......... .......... 88% 1.21M 59s\n469050K .......... .......... .......... .......... .......... 88% 1.17M 59s\n469100K .......... .......... .......... .......... .......... 88% 1.18M 59s\n469150K .......... .......... .......... .......... .......... 88% 881K 59s\n469200K .......... .......... .......... .......... .......... 88% 224K 59s\n469250K .......... .......... .......... .......... .......... 88% 146M 59s\n469300K .......... .......... .......... .......... .......... 88% 19.5M 59s\n469350K .......... .......... .......... .......... .......... 88% 13.0M 59s\n469400K .......... .......... .......... .......... .......... 88% 9.26M 59s\n469450K .......... .......... .......... .......... .......... 88% 2.00M 59s\n469500K .......... .......... .......... .......... .......... 88% 1.18M 59s\n469550K .......... .......... .......... .......... .......... 88% 915K 59s\n469600K .......... .......... .......... .......... .......... 88% 1.18M 59s\n469650K .......... .......... .......... .......... .......... 88% 1.16M 59s\n469700K .......... .......... .......... .......... .......... 88% 1.19M 58s\n469750K .......... .......... .......... .......... .......... 88% 1.20M 58s\n469800K .......... .......... .......... .......... .......... 88% 1.18M 58s\n469850K .......... .......... .......... .......... .......... 88% 1.14M 58s\n469900K .......... .......... .......... .......... .......... 88% 1.24M 58s\n469950K .......... .......... .......... .......... .......... 88% 906K 58s\n470000K .......... .......... .......... .......... .......... 88% 1.16M 58s\n470050K .......... .......... .......... .......... .......... 88% 1.21M 58s\n470100K .......... .......... .......... .......... .......... 88% 1.14M 58s\n470150K .......... .......... .......... .......... .......... 88% 1.24M 58s\n470200K .......... .......... .......... .......... .......... 88% 1.19M 58s\n470250K .......... .......... .......... .......... .......... 88% 1.18M 58s\n470300K .......... .......... .......... .......... .......... 88% 1.14M 58s\n470350K .......... .......... .......... .......... .......... 88% 886K 58s\n470400K .......... .......... .......... .......... .......... 88% 1.35M 58s\n470450K .......... .......... .......... .......... .......... 88% 167K 58s\n470500K .......... .......... .......... .......... .......... 88% 95.6M 58s\n470550K .......... .......... .......... .......... .......... 88% 405M 58s\n470600K .......... .......... .......... .......... .......... 88% 1.33M 58s\n470650K .......... .......... .......... .......... .......... 88% 214M 58s\n470700K .......... .......... .......... .......... .......... 88% 47.1M 58s\n470750K .......... .......... .......... .......... .......... 88% 868K 57s\n470800K .......... .......... .......... .......... .......... 88% 1.19M 57s\n470850K .......... .......... .......... .......... .......... 88% 1.15M 57s\n470900K .......... .......... .......... .......... .......... 88% 1.22M 57s\n470950K .......... .......... .......... .......... .......... 88% 1.19M 57s\n471000K .......... .......... .......... .......... .......... 88% 1.17M 57s\n471050K .......... .......... .......... .......... .......... 88% 1.19M 57s\n471100K .......... .......... .......... .......... .......... 88% 1.20M 57s\n471150K .......... .......... .......... .......... .......... 88% 905K 57s\n471200K .......... .......... .......... .......... .......... 88% 1.18M 57s\n471250K .......... .......... .......... .......... .......... 88% 1.13M 57s\n471300K .......... .......... .......... .......... .......... 88% 1.22M 57s\n471350K .......... .......... .......... .......... .......... 88% 1.15M 57s\n471400K .......... .......... .......... .......... .......... 88% 171K 57s\n471450K .......... .......... .......... .......... .......... 88% 1.22M 57s\n471500K .......... .......... .......... .......... .......... 88% 355M 57s\n471550K .......... .......... .......... .......... .......... 88% 1.50M 57s\n471600K .......... .......... .......... .......... .......... 88% 90.8M 57s\n471650K .......... .......... .......... .......... .......... 88% 247M 57s\n471700K .......... .......... .......... .......... .......... 88% 164K 57s\n471750K .......... .......... .......... .......... .......... 88% 2.27M 57s\n471800K .......... .......... .......... .......... .......... 88% 6.09M 57s\n471850K .......... .......... .......... .......... .......... 88% 105M 56s\n471900K .......... .......... .......... .......... .......... 88% 882K 56s\n471950K .......... .......... .......... .......... .......... 88% 84.5M 56s\n472000K .......... .......... .......... .......... .......... 88% 154M 56s\n472050K .......... .......... .......... .......... .......... 88% 1.03M 56s\n472100K .......... .......... .......... .......... .......... 88% 1.16M 56s\n472150K .......... .......... .......... .......... .......... 88% 201K 56s\n472200K .......... .......... .......... .......... .......... 88% 152M 56s\n472250K .......... .......... .......... .......... .......... 88% 172M 56s\n472300K .......... .......... .......... .......... .......... 88% 59.4M 56s\n472350K .......... .......... .......... .......... .......... 88% 111M 56s\n472400K .......... .......... .......... .......... .......... 88% 1.09M 56s\n472450K .......... .......... .......... .......... .......... 88% 1.16M 56s\n472500K .......... .......... .......... .......... .......... 88% 1.19M 56s\n472550K .......... .......... .......... .......... .......... 88% 1.17M 56s\n472600K .......... .......... .......... .......... .......... 88% 1.12M 56s\n472650K .......... .......... .......... .......... .......... 88% 1.23M 56s\n472700K .......... .......... .......... .......... .......... 88% 1.22M 56s\n472750K .......... .......... .......... .......... .......... 88% 901K 56s\n472800K .......... .......... .......... .......... .......... 88% 1.15M 56s\n472850K .......... .......... .......... .......... .......... 88% 1.19M 56s\n472900K .......... .......... .......... .......... .......... 88% 1.14M 55s\n472950K .......... .......... .......... .......... .......... 88% 1.17M 55s\n473000K .......... .......... .......... .......... .......... 88% 1.20M 55s\n473050K .......... .......... .......... .......... .......... 88% 1.18M 55s\n473100K .......... .......... .......... .......... .......... 88% 1.17M 55s\n473150K .......... .......... .......... .......... .......... 88% 910K 55s\n473200K .......... .......... .......... .......... .......... 88% 1.12M 55s\n473250K .......... .......... .......... .......... .......... 88% 1.21M 55s\n473300K .......... .......... .......... .......... .......... 88% 1.18M 55s\n473350K .......... .......... .......... .......... .......... 89% 1.18M 55s\n473400K .......... .......... .......... .......... .......... 89% 1.21M 55s\n473450K .......... .......... .......... .......... .......... 89% 1.10M 55s\n473500K .......... .......... .......... .......... .......... 89% 1.25M 55s\n473550K .......... .......... .......... .......... .......... 89% 926K 55s\n473600K .......... .......... .......... .......... .......... 89% 1.16M 55s\n473650K .......... .......... .......... .......... .......... 89% 1.14M 55s\n473700K .......... .......... .......... .......... .......... 89% 1.25M 55s\n473750K .......... .......... .......... .......... .......... 89% 1.15M 55s\n473800K .......... .......... .......... .......... .......... 89% 1.20M 55s\n473850K .......... .......... .......... .......... .......... 89% 1.24M 55s\n473900K .......... .......... .......... .......... .......... 89% 1.10M 55s\n473950K .......... .......... .......... .......... .......... 89% 961K 54s\n474000K .......... .......... .......... .......... .......... 89% 1.21M 54s\n474050K .......... .......... .......... .......... .......... 89% 1.17M 54s\n474100K .......... .......... .......... .......... .......... 89% 1.19M 54s\n474150K .......... .......... .......... .......... .......... 89% 1.19M 54s\n474200K .......... .......... .......... .......... .......... 89% 1.15M 54s\n474250K .......... .......... .......... .......... .......... 89% 1.23M 54s\n474300K .......... .......... .......... .......... .......... 89% 1.16M 54s\n474350K .......... .......... .......... .......... .......... 89% 894K 54s\n474400K .......... .......... .......... .......... .......... 89% 1.23M 54s\n474450K .......... .......... .......... .......... .......... 89% 1.20M 54s\n474500K .......... .......... .......... .......... .......... 89% 1.15M 54s\n474550K .......... .......... .......... .......... .......... 89% 1.22M 54s\n474600K .......... .......... .......... .......... .......... 89% 1.19M 54s\n474650K .......... .......... .......... .......... .......... 89% 1.20M 54s\n474700K .......... .......... .......... .......... .......... 89% 1.13M 54s\n474750K .......... .......... .......... .......... .......... 89% 935K 54s\n474800K .......... .......... .......... .......... .......... 89% 1.18M 54s\n474850K .......... .......... .......... .......... .......... 89% 1.22M 54s\n474900K .......... .......... .......... .......... .......... 89% 1.17M 54s\n474950K .......... .......... .......... .......... .......... 89% 1.18M 54s\n475000K .......... .......... .......... .......... .......... 89% 1.20M 53s\n475050K .......... .......... .......... .......... .......... 89% 1.18M 53s\n475100K .......... .......... .......... .......... .......... 89% 1.18M 53s\n475150K .......... .......... .......... .......... .......... 89% 930K 53s\n475200K .......... .......... .......... .......... .......... 89% 1.11M 53s\n475250K .......... .......... .......... .......... .......... 89% 1.27M 53s\n475300K .......... .......... .......... .......... .......... 89% 1.19M 53s\n475350K .......... .......... .......... .......... .......... 89% 1.17M 53s\n475400K .......... .......... .......... .......... .......... 89% 1.20M 53s\n475450K .......... .......... .......... .......... .......... 89% 1.07M 53s\n475500K .......... .......... .......... .......... .......... 89% 1.30M 53s\n475550K .......... .......... .......... .......... .......... 89% 928K 53s\n475600K .......... .......... .......... .......... .......... 89% 1011K 53s\n475650K .......... .......... .......... .......... .......... 89% 1.44M 53s\n475700K .......... .......... .......... .......... .......... 89% 1.21M 53s\n475750K .......... .......... .......... .......... .......... 89% 1.16M 53s\n475800K .......... .......... .......... .......... .......... 89% 1.23M 53s\n475850K .......... .......... .......... .......... .......... 89% 1.16M 53s\n475900K .......... .......... .......... .......... .......... 89% 1.19M 53s\n475950K .......... .......... .......... .......... .......... 89% 920K 53s\n476000K .......... .......... .......... .......... .......... 89% 1.17M 53s\n476050K .......... .......... .......... .......... .......... 89% 1.21M 52s\n476100K .......... .......... .......... .......... .......... 89% 1.17M 52s\n476150K .......... .......... .......... .......... .......... 89% 1.20M 52s\n476200K .......... .......... .......... .......... .......... 89% 1.20M 52s\n476250K .......... .......... .......... .......... .......... 89% 871K 52s\n476300K .......... .......... .......... .......... .......... 89% 1.78M 52s\n476350K .......... .......... .......... .......... .......... 89% 913K 52s\n476400K .......... .......... .......... .......... .......... 89% 1.20M 52s\n476450K .......... .......... .......... .......... .......... 89% 1.18M 52s\n476500K .......... .......... .......... .......... .......... 89% 1.22M 52s\n476550K .......... .......... .......... .......... .......... 89% 1.19M 52s\n476600K .......... .......... .......... .......... .......... 89% 1.20M 52s\n476650K .......... .......... .......... .......... .......... 89% 1.15M 52s\n476700K .......... .......... .......... .......... .......... 89% 1.13M 52s\n476750K .......... .......... .......... .......... .......... 89% 932K 52s\n476800K .......... .......... .......... .......... .......... 89% 1.27M 52s\n476850K .......... .......... .......... .......... .......... 89% 1.12M 52s\n476900K .......... .......... .......... .......... .......... 89% 1.25M 52s\n476950K .......... .......... .......... .......... .......... 89% 1.18M 52s\n477000K .......... .......... .......... .......... .......... 89% 1.17M 52s\n477050K .......... .......... .......... .......... .......... 89% 1.19M 52s\n477100K .......... .......... .......... .......... .......... 89% 1.19M 51s\n477150K .......... .......... .......... .......... .......... 89% 156K 51s\n477200K .......... .......... .......... .......... .......... 89% 66.9M 51s\n477250K .......... .......... .......... .......... .......... 89% 111M 51s\n477300K .......... .......... .......... .......... .......... 89% 1.51M 51s\n477350K .......... .......... .......... .......... .......... 89% 101M 51s\n477400K .......... .......... .......... .......... .......... 89% 419M 51s\n477450K .......... .......... .......... .......... .......... 89% 976K 51s\n477500K .......... .......... .......... .......... .......... 89% 1.12M 51s\n477550K .......... .......... .......... .......... .......... 89% 899K 51s\n477600K .......... .......... .......... .......... .......... 89% 1.26M 51s\n477650K .......... .......... .......... .......... .......... 89% 1.18M 51s\n477700K .......... .......... .......... .......... .......... 89% 1.16M 51s\n477750K .......... .......... .......... .......... .......... 89% 1.23M 51s\n477800K .......... .......... .......... .......... .......... 89% 1.17M 51s\n477850K .......... .......... .......... .......... .......... 89% 1.19M 51s\n477900K .......... .......... .......... .......... .......... 89% 1.17M 51s\n477950K .......... .......... .......... .......... .......... 89% 922K 51s\n478000K .......... .......... .......... .......... .......... 89% 1.18M 51s\n478050K .......... .......... .......... .......... .......... 89% 1.17M 51s\n478100K .......... .......... .......... .......... .......... 89% 1.25M 51s\n478150K .......... .......... .......... .......... .......... 89% 1.17M 50s\n478200K .......... .......... .......... .......... .......... 89% 1.17M 50s\n478250K .......... .......... .......... .......... .......... 89% 1.21M 50s\n478300K .......... .......... .......... .......... .......... 89% 1.14M 50s\n478350K .......... .......... .......... .......... .......... 89% 199K 50s\n478400K .......... .......... .......... .......... .......... 89% 115M 50s\n478450K .......... .......... .......... .......... .......... 89% 444M 50s\n478500K .......... .......... .......... .......... .......... 89% 6.94M 50s\n478550K .......... .......... .......... .......... .......... 89% 5.87M 50s\n478600K .......... .......... .......... .......... .......... 89% 5.82M 50s\n478650K .......... .......... .......... .......... .......... 90% 1.76M 50s\n478700K .......... .......... .......... .......... .......... 90% 1.18M 50s\n478750K .......... .......... .......... .......... .......... 90% 907K 50s\n478800K .......... .......... .......... .......... .......... 90% 194K 50s\n478850K .......... .......... .......... .......... .......... 90% 142M 50s\n478900K .......... .......... .......... .......... .......... 90% 158M 50s\n478950K .......... .......... .......... .......... .......... 90% 40.6M 50s\n479000K .......... .......... .......... .......... .......... 90% 50.0M 50s\n479050K .......... .......... .......... .......... .......... 90% 152M 50s\n479100K .......... .......... .......... .......... .......... 90% 875K 50s\n479150K .......... .......... .......... .......... .......... 90% 870K 50s\n479200K .......... .......... .......... .......... .......... 90% 1.23M 49s\n479250K .......... .......... .......... .......... .......... 90% 1.22M 49s\n479300K .......... .......... .......... .......... .......... 90% 1.21M 49s\n479350K .......... .......... .......... .......... .......... 90% 1.14M 49s\n479400K .......... .......... .......... .......... .......... 90% 1.20M 49s\n479450K .......... .......... .......... .......... .......... 90% 1.26M 49s\n479500K .......... .......... .......... .......... .......... 90% 1.16M 49s\n479550K .......... .......... .......... .......... .......... 90% 772K 49s\n479600K .......... .......... .......... .......... .......... 90% 1.58M 49s\n479650K .......... .......... .......... .......... .......... 90% 1.17M 49s\n479700K .......... .......... .......... .......... .......... 90% 1.17M 49s\n479750K .......... .......... .......... .......... .......... 90% 1.20M 49s\n479800K .......... .......... .......... .......... .......... 90% 1.20M 49s\n479850K .......... .......... .......... .......... .......... 90% 1.21M 49s\n479900K .......... .......... .......... .......... .......... 90% 1.17M 49s\n479950K .......... .......... .......... .......... .......... 90% 889K 49s\n480000K .......... .......... .......... .......... .......... 90% 1.26M 49s\n480050K .......... .......... .......... .......... .......... 90% 1.10M 49s\n480100K .......... .......... .......... .......... .......... 90% 1.29M 49s\n480150K .......... .......... .......... .......... .......... 90% 1.16M 49s\n480200K .......... .......... .......... .......... .......... 90% 1.22M 49s\n480250K .......... .......... .......... .......... .......... 90% 1.17M 48s\n480300K .......... .......... .......... .......... .......... 90% 1.19M 48s\n480350K .......... .......... .......... .......... .......... 90% 930K 48s\n480400K .......... .......... .......... .......... .......... 90% 1.17M 48s\n480450K .......... .......... .......... .......... .......... 90% 1.21M 48s\n480500K .......... .......... .......... .......... .......... 90% 1.18M 48s\n480550K .......... .......... .......... .......... .......... 90% 1.16M 48s\n480600K .......... .......... .......... .......... .......... 90% 1.20M 48s\n480650K .......... .......... .......... .......... .......... 90% 1.18M 48s\n480700K .......... .......... .......... .......... .......... 90% 1.21M 48s\n480750K .......... .......... .......... .......... .......... 90% 890K 48s\n480800K .......... .......... .......... .......... .......... 90% 1.11M 48s\n480850K .......... .......... .......... .......... .......... 90% 1.22M 48s\n480900K .......... .......... .......... .......... .......... 90% 1.22M 48s\n480950K .......... .......... .......... .......... .......... 90% 1.22M 48s\n481000K .......... .......... .......... .......... .......... 90% 1.20M 48s\n481050K .......... .......... .......... .......... .......... 90% 1.16M 48s\n481100K .......... .......... .......... .......... .......... 90% 1.21M 48s\n481150K .......... .......... .......... .......... .......... 90% 911K 48s\n481200K .......... .......... .......... .......... .......... 90% 1.17M 48s\n481250K .......... .......... .......... .......... .......... 90% 1.21M 48s\n481300K .......... .......... .......... .......... .......... 90% 1.19M 47s\n481350K .......... .......... .......... .......... .......... 90% 1.20M 47s\n481400K .......... .......... .......... .......... .......... 90% 1.17M 47s\n481450K .......... .......... .......... .......... .......... 90% 1.20M 47s\n481500K .......... .......... .......... .......... .......... 90% 1.10M 47s\n481550K .......... .......... .......... .......... .......... 90% 989K 47s\n481600K .......... .......... .......... .......... .......... 90% 1.15M 47s\n481650K .......... .......... .......... .......... .......... 90% 1.20M 47s\n481700K .......... .......... .......... .......... .......... 90% 1.19M 47s\n481750K .......... .......... .......... .......... .......... 90% 1.20M 47s\n481800K .......... .......... .......... .......... .......... 90% 1.18M 47s\n481850K .......... .......... .......... .......... .......... 90% 1.17M 47s\n481900K .......... .......... .......... .......... .......... 90% 1.07M 47s\n481950K .......... .......... .......... .......... .......... 90% 958K 47s\n482000K .......... .......... .......... .......... .......... 90% 1.25M 47s\n482050K .......... .......... .......... .......... .......... 90% 1.17M 47s\n482100K .......... .......... .......... .......... .......... 90% 1.17M 47s\n482150K .......... .......... .......... .......... .......... 90% 1.21M 47s\n482200K .......... .......... .......... .......... .......... 90% 1.19M 47s\n482250K .......... .......... .......... .......... .......... 90% 1.17M 47s\n482300K .......... .......... .......... .......... .......... 90% 1.22M 47s\n482350K .......... .......... .......... .......... .......... 90% 892K 46s\n482400K .......... .......... .......... .......... .......... 90% 1.21M 46s\n482450K .......... .......... .......... .......... .......... 90% 1.18M 46s\n482500K .......... .......... .......... .......... .......... 90% 1.20M 46s\n482550K .......... .......... .......... .......... .......... 90% 1.21M 46s\n482600K .......... .......... .......... .......... .......... 90% 1.19M 46s\n482650K .......... .......... .......... .......... .......... 90% 1.20M 46s\n482700K .......... .......... .......... .......... .......... 90% 1.12M 46s\n482750K .......... .......... .......... .......... .......... 90% 921K 46s\n482800K .......... .......... .......... .......... .......... 90% 1.20M 46s\n482850K .......... .......... .......... .......... .......... 90% 1.21M 46s\n482900K .......... .......... .......... .......... .......... 90% 1.19M 46s\n482950K .......... .......... .......... .......... .......... 90% 1.18M 46s\n483000K .......... .......... .......... .......... .......... 90% 1.17M 46s\n483050K .......... .......... .......... .......... .......... 90% 1.17M 46s\n483100K .......... .......... .......... .......... .......... 90% 1.21M 46s\n483150K .......... .......... .......... .......... .......... 90% 937K 46s\n483200K .......... .......... .......... .......... .......... 90% 1.18M 46s\n483250K .......... .......... .......... .......... .......... 90% 1.18M 46s\n483300K .......... .......... .......... .......... .......... 90% 1.20M 46s\n483350K .......... .......... .......... .......... .......... 90% 1.19M 46s\n483400K .......... .......... .......... .......... .......... 90% 1.13M 45s\n483450K .......... .......... .......... .......... .......... 90% 1.24M 45s\n483500K .......... .......... .......... .......... .......... 90% 1.18M 45s\n483550K .......... .......... .......... .......... .......... 90% 907K 45s\n483600K .......... .......... .......... .......... .......... 90% 1.22M 45s\n483650K .......... .......... .......... .......... .......... 90% 1.17M 45s\n483700K .......... .......... .......... .......... .......... 90% 1.21M 45s\n483750K .......... .......... .......... .......... .......... 90% 1.19M 45s\n483800K .......... .......... .......... .......... .......... 90% 1.20M 45s\n483850K .......... .......... .......... .......... .......... 90% 1.15M 45s\n483900K .......... .......... .......... .......... .......... 90% 1.16M 45s\n483950K .......... .......... .......... .......... .......... 91% 932K 45s\n484000K .......... .......... .......... .......... .......... 91% 1.15M 45s\n484050K .......... .......... .......... .......... .......... 91% 1.23M 45s\n484100K .......... .......... .......... .......... .......... 91% 1.16M 45s\n484150K .......... .......... .......... .......... .......... 91% 1.22M 45s\n484200K .......... .......... .......... .......... .......... 91% 1.16M 45s\n484250K .......... .......... .......... .......... .......... 91% 1.17M 45s\n484300K .......... .......... .......... .......... .......... 91% 1.21M 45s\n484350K .......... .......... .......... .......... .......... 91% 903K 45s\n484400K .......... .......... .......... .......... .......... 91% 1.22M 45s\n484450K .......... .......... .......... .......... .......... 91% 1.18M 45s\n484500K .......... .......... .......... .......... .......... 91% 1.18M 44s\n484550K .......... .......... .......... .......... .......... 91% 1.08M 44s\n484600K .......... .......... .......... .......... .......... 91% 1.28M 44s\n484650K .......... .......... .......... .......... .......... 91% 1.20M 44s\n484700K .......... .......... .......... .......... .......... 91% 1.14M 44s\n484750K .......... .......... .......... .......... .......... 91% 949K 44s\n484800K .......... .......... .......... .......... .......... 91% 1.18M 44s\n484850K .......... .......... .......... .......... .......... 91% 1.18M 44s\n484900K .......... .......... .......... .......... .......... 91% 1.19M 44s\n484950K .......... .......... .......... .......... .......... 91% 1.19M 44s\n485000K .......... .......... .......... .......... .......... 91% 1.20M 44s\n485050K .......... .......... .......... .......... .......... 91% 1.11M 44s\n485100K .......... .......... .......... .......... .......... 91% 1.25M 44s\n485150K .......... .......... .......... .......... .......... 91% 884K 44s\n485200K .......... .......... .......... .......... .......... 91% 1.20M 44s\n485250K .......... .......... .......... .......... .......... 91% 1.23M 44s\n485300K .......... .......... .......... .......... .......... 91% 1.15M 44s\n485350K .......... .......... .......... .......... .......... 91% 1.19M 44s\n485400K .......... .......... .......... .......... .......... 91% 1.23M 44s\n485450K .......... .......... .......... .......... .......... 91% 1.16M 44s\n485500K .......... .......... .......... .......... .......... 91% 1.23M 44s\n485550K .......... .......... .......... .......... .......... 91% 888K 43s\n485600K .......... .......... .......... .......... .......... 91% 1.23M 43s\n485650K .......... .......... .......... .......... .......... 91% 1.18M 43s\n485700K .......... .......... .......... .......... .......... 91% 1.20M 43s\n485750K .......... .......... .......... .......... .......... 91% 1.20M 43s\n485800K .......... .......... .......... .......... .......... 91% 1.15M 43s\n485850K .......... .......... .......... .......... .......... 91% 1.19M 43s\n485900K .......... .......... .......... .......... .......... 91% 177K 43s\n485950K .......... .......... .......... .......... .......... 91% 134M 43s\n486000K .......... .......... .......... .......... .......... 91% 443M 43s\n486050K .......... .......... .......... .......... .......... 91% 494K 43s\n486100K .......... .......... .......... .......... .......... 91% 482M 43s\n486150K .......... .......... .......... .......... .......... 91% 1.14M 43s\n486200K .......... .......... .......... .......... .......... 91% 1.10M 43s\n486250K .......... .......... .......... .......... .......... 91% 1.39M 43s\n486300K .......... .......... .......... .......... .......... 91% 1.15M 43s\n486350K .......... .......... .......... .......... .......... 91% 908K 43s\n486400K .......... .......... .......... .......... .......... 91% 1.16M 43s\n486450K .......... .......... .......... .......... .......... 91% 1.19M 43s\n486500K .......... .......... .......... .......... .......... 91% 1.23M 43s\n486550K .......... .......... .......... .......... .......... 91% 1.22M 43s\n486600K .......... .......... .......... .......... .......... 91% 1.16M 42s\n486650K .......... .......... .......... .......... .......... 91% 1.21M 42s\n486700K .......... .......... .......... .......... .......... 91% 1.12M 42s\n486750K .......... .......... .......... .......... .......... 91% 939K 42s\n486800K .......... .......... .......... .......... .......... 91% 1.15M 42s\n486850K .......... .......... .......... .......... .......... 91% 1.20M 42s\n486900K .......... .......... .......... .......... .......... 91% 1.24M 42s\n486950K .......... .......... .......... .......... .......... 91% 1.17M 42s\n487000K .......... .......... .......... .......... .......... 91% 1.25M 42s\n487050K .......... .......... .......... .......... .......... 91% 1.16M 42s\n487100K .......... .......... .......... .......... .......... 91% 1.20M 42s\n487150K .......... .......... .......... .......... .......... 91% 906K 42s\n487200K .......... .......... .......... .......... .......... 91% 1.16M 42s\n487250K .......... .......... .......... .......... .......... 91% 1.11M 42s\n487300K .......... .......... .......... .......... .......... 91% 1.20M 42s\n487350K .......... .......... .......... .......... .......... 91% 1.22M 42s\n487400K .......... .......... .......... .......... .......... 91% 1.19M 42s\n487450K .......... .......... .......... .......... .......... 91% 1.23M 42s\n487500K .......... .......... .......... .......... .......... 91% 213K 42s\n487550K .......... .......... .......... .......... .......... 91% 39.8M 42s\n487600K .......... .......... .......... .......... .......... 91% 9.68M 42s\n487650K .......... .......... .......... .......... .......... 91% 10.4M 41s\n487700K .......... .......... .......... .......... .......... 91% 5.22M 41s\n487750K .......... .......... .......... .......... .......... 91% 5.08M 41s\n487800K .......... .......... .......... .......... .......... 91% 208K 41s\n487850K .......... .......... .......... .......... .......... 91% 111M 41s\n487900K .......... .......... .......... .......... .......... 91% 206M 41s\n487950K .......... .......... .......... .......... .......... 91% 242M 41s\n488000K .......... .......... .......... .......... .......... 91% 184M 41s\n488050K .......... .......... .......... .......... .......... 91% 917K 41s\n488100K .......... .......... .......... .......... .......... 91% 1.25M 41s\n488150K .......... .......... .......... .......... .......... 91% 190K 41s\n488200K .......... .......... .......... .......... .......... 91% 131M 41s\n488250K .......... .......... .......... .......... .......... 91% 516M 41s\n488300K .......... .......... .......... .......... .......... 91% 180M 41s\n488350K .......... .......... .......... .......... .......... 91% 13.3M 41s\n488400K .......... .......... .......... .......... .......... 91% 2.78M 41s\n488450K .......... .......... .......... .......... .......... 91% 1.12M 41s\n488500K .......... .......... .......... .......... .......... 91% 188K 41s\n488550K .......... .......... .......... .......... .......... 91% 89.4M 41s\n488600K .......... .......... .......... .......... .......... 91% 164M 41s\n488650K .......... .......... .......... .......... .......... 91% 60.1M 41s\n488700K .......... .......... .......... .......... .......... 91% 167M 41s\n488750K .......... .......... .......... .......... .......... 91% 91.6M 40s\n488800K .......... .......... .......... .......... .......... 91% 837K 40s\n488850K .......... .......... .......... .......... .......... 91% 1.20M 40s\n488900K .......... .......... .......... .......... .......... 91% 1.16M 40s\n488950K .......... .......... .......... .......... .......... 91% 1.23M 40s\n489000K .......... .......... .......... .......... .......... 91% 1.16M 40s\n489050K .......... .......... .......... .......... .......... 91% 1.12M 40s\n489100K .......... .......... .......... .......... .......... 91% 1.14M 40s\n489150K .......... .......... .......... .......... .......... 91% 785K 40s\n489200K .......... .......... .......... .......... .......... 91% 1.20M 40s\n489250K .......... .......... .......... .......... .......... 91% 1005K 40s\n489300K .......... .......... .......... .......... .......... 92% 843K 40s\n489350K .......... .......... .......... .......... .......... 92% 987K 40s\n489400K .......... .......... .......... .......... .......... 92% 803K 40s\n489450K .......... .......... .......... .......... .......... 92% 1.22M 40s\n489500K .......... .......... .......... .......... .......... 92% 795K 40s\n489550K .......... .......... .......... .......... .......... 92% 727K 40s\n489600K .......... .......... .......... .......... .......... 92% 1.01M 40s\n489650K .......... .......... .......... .......... .......... 92% 1.03M 40s\n489700K .......... .......... .......... .......... .......... 92% 1.14M 40s\n489750K .......... .......... .......... .......... .......... 92% 1.01M 40s\n489800K .......... .......... .......... .......... .......... 92% 1.07M 39s\n489850K .......... .......... .......... .......... .......... 92% 955K 39s\n489900K .......... .......... .......... .......... .......... 92% 1.23M 39s\n489950K .......... .......... .......... .......... .......... 92% 863K 39s\n490000K .......... .......... .......... .......... .......... 92% 942K 39s\n490050K .......... .......... .......... .......... .......... 92% 1.10M 39s\n490100K .......... .......... .......... .......... .......... 92% 1.07M 39s\n490150K .......... .......... .......... .......... .......... 92% 1.22M 39s\n490200K .......... .......... .......... .......... .......... 92% 1.15M 39s\n490250K .......... .......... .......... .......... .......... 92% 1.15M 39s\n490300K .......... .......... .......... .......... .......... 92% 1.26M 39s\n490350K .......... .......... .......... .......... .......... 92% 861K 39s\n490400K .......... .......... .......... .......... .......... 92% 1.16M 39s\n490450K .......... .......... .......... .......... .......... 92% 1.15M 39s\n490500K .......... .......... .......... .......... .......... 92% 206K 39s\n490550K .......... .......... .......... .......... .......... 92% 63.1M 39s\n490600K .......... .......... .......... .......... .......... 92% 295M 39s\n490650K .......... .......... .......... .......... .......... 92% 1.50M 39s\n490700K .......... .......... .......... .......... .......... 92% 185M 39s\n490750K .......... .......... .......... .......... .......... 92% 272M 39s\n490800K .......... .......... .......... .......... .......... 92% 733K 39s\n490850K .......... .......... .......... .......... .......... 92% 1.19M 38s\n490900K .......... .......... .......... .......... .......... 92% 1.12M 38s\n490950K .......... .......... .......... .......... .......... 92% 1.19M 38s\n491000K .......... .......... .......... .......... .......... 92% 1.26M 38s\n491050K .......... .......... .......... .......... .......... 92% 1.14M 38s\n491100K .......... .......... .......... .......... .......... 92% 1.20M 38s\n491150K .......... .......... .......... .......... .......... 92% 877K 38s\n491200K .......... .......... .......... .......... .......... 92% 1.16M 38s\n491250K .......... .......... .......... .......... .......... 92% 1.23M 38s\n491300K .......... .......... .......... .......... .......... 92% 1.19M 38s\n491350K .......... .......... .......... .......... .......... 92% 1.22M 38s\n491400K .......... .......... .......... .......... .......... 92% 1.23M 38s\n491450K .......... .......... .......... .......... .......... 92% 1.20M 38s\n491500K .......... .......... .......... .......... .......... 92% 1.16M 38s\n491550K .......... .......... .......... .......... .......... 92% 865K 38s\n491600K .......... .......... .......... .......... .......... 92% 1.15M 38s\n491650K .......... .......... .......... .......... .......... 92% 1.25M 38s\n491700K .......... .......... .......... .......... .......... 92% 1.20M 38s\n491750K .......... .......... .......... .......... .......... 92% 1.20M 38s\n491800K .......... .......... .......... .......... .......... 92% 1.21M 38s\n491850K .......... .......... .......... .......... .......... 92% 693K 38s\n491900K .......... .......... .......... .......... .......... 92% 3.49M 37s\n491950K .......... .......... .......... .......... .......... 92% 921K 37s\n492000K .......... .......... .......... .......... .......... 92% 1.30M 37s\n492050K .......... .......... .......... .......... .......... 92% 1.14M 37s\n492100K .......... .......... .......... .......... .......... 92% 1.25M 37s\n492150K .......... .......... .......... .......... .......... 92% 191K 37s\n492200K .......... .......... .......... .......... .......... 92% 80.5M 37s\n492250K .......... .......... .......... .......... .......... 92% 100M 37s\n492300K .......... .......... .......... .......... .......... 92% 7.38M 37s\n492350K .......... .......... .......... .......... .......... 92% 56.8M 37s\n492400K .......... .......... .......... .......... .......... 92% 106M 37s\n492450K .......... .......... .......... .......... .......... 92% 530K 37s\n492500K .......... .......... .......... .......... .......... 92% 201K 37s\n492550K .......... .......... .......... .......... .......... 92% 3.43M 37s\n492600K .......... .......... .......... .......... .......... 92% 49.7M 37s\n492650K .......... .......... .......... .......... .......... 92% 160M 37s\n492700K .......... .......... .......... .......... .......... 92% 161M 37s\n492750K .......... .......... .......... .......... .......... 92% 85.3M 37s\n492800K .......... .......... .......... .......... .......... 92% 656K 37s\n492850K .......... .......... .......... .......... .......... 92% 1.21M 37s\n492900K .......... .......... .......... .......... .......... 92% 1.06M 37s\n492950K .......... .......... .......... .......... .......... 92% 1.35M 37s\n493000K .......... .......... .......... .......... .......... 92% 1.21M 36s\n493050K .......... .......... .......... .......... .......... 92% 1.13M 36s\n493100K .......... .......... .......... .......... .......... 92% 1.21M 36s\n493150K .......... .......... .......... .......... .......... 92% 899K 36s\n493200K .......... .......... .......... .......... .......... 92% 1.22M 36s\n493250K .......... .......... .......... .......... .......... 92% 1.21M 36s\n493300K .......... .......... .......... .......... .......... 92% 1.17M 36s\n493350K .......... .......... .......... .......... .......... 92% 1.18M 36s\n493400K .......... .......... .......... .......... .......... 92% 1.17M 36s\n493450K .......... .......... .......... .......... .......... 92% 1.22M 36s\n493500K .......... .......... .......... .......... .......... 92% 1.19M 36s\n493550K .......... .......... .......... .......... .......... 92% 911K 36s\n493600K .......... .......... .......... .......... .......... 92% 1.14M 36s\n493650K .......... .......... .......... .......... .......... 92% 1.24M 36s\n493700K .......... .......... .......... .......... .......... 92% 1.14M 36s\n493750K .......... .......... .......... .......... .......... 92% 1.17M 36s\n493800K .......... .......... .......... .......... .......... 92% 1.22M 36s\n493850K .......... .......... .......... .......... .......... 92% 1.21M 36s\n493900K .......... .......... .......... .......... .......... 92% 1.18M 36s\n493950K .......... .......... .......... .......... .......... 92% 919K 36s\n494000K .......... .......... .......... .......... .......... 92% 1.19M 36s\n494050K .......... .......... .......... .......... .......... 92% 1.14M 35s\n494100K .......... .......... .......... .......... .......... 92% 1.24M 35s\n494150K .......... .......... .......... .......... .......... 92% 1.15M 35s\n494200K .......... .......... .......... .......... .......... 92% 1.22M 35s\n494250K .......... .......... .......... .......... .......... 92% 1.19M 35s\n494300K .......... .......... .......... .......... .......... 92% 1.20M 35s\n494350K .......... .......... .......... .......... .......... 92% 913K 35s\n494400K .......... .......... .......... .......... .......... 92% 1.17M 35s\n494450K .......... .......... .......... .......... .......... 92% 1.16M 35s\n494500K .......... .......... .......... .......... .......... 92% 209K 35s\n494550K .......... .......... .......... .......... .......... 92% 124M 35s\n494600K .......... .......... .......... .......... .......... 93% 174M 35s\n494650K .......... .......... .......... .......... .......... 93% 175M 35s\n494700K .......... .......... .......... .......... .......... 93% 61.0M 35s\n494750K .......... .......... .......... .......... .......... 93% 959K 35s\n494800K .......... .......... .......... .......... .......... 93% 1.29M 35s\n494850K .......... .......... .......... .......... .......... 93% 1.23M 35s\n494900K .......... .......... .......... .......... .......... 93% 1.13M 35s\n494950K .......... .......... .......... .......... .......... 93% 1.19M 35s\n495000K .......... .......... .......... .......... .......... 93% 1.20M 35s\n495050K .......... .......... .......... .......... .......... 93% 1.20M 35s\n495100K .......... .......... .......... .......... .......... 93% 1.18M 34s\n495150K .......... .......... .......... .......... .......... 93% 917K 34s\n495200K .......... .......... .......... .......... .......... 93% 1.21M 34s\n495250K .......... .......... .......... .......... .......... 93% 1.14M 34s\n495300K .......... .......... .......... .......... .......... 93% 1.22M 34s\n495350K .......... .......... .......... .......... .......... 93% 1.18M 34s\n495400K .......... .......... .......... .......... .......... 93% 1.13M 34s\n495450K .......... .......... .......... .......... .......... 93% 1.28M 34s\n495500K .......... .......... .......... .......... .......... 93% 1.13M 34s\n495550K .......... .......... .......... .......... .......... 93% 923K 34s\n495600K .......... .......... .......... .......... .......... 93% 1.22M 34s\n495650K .......... .......... .......... .......... .......... 93% 1.18M 34s\n495700K .......... .......... .......... .......... .......... 93% 1.14M 34s\n495750K .......... .......... .......... .......... .......... 93% 1.23M 34s\n495800K .......... .......... .......... .......... .......... 93% 1.11M 34s\n495850K .......... .......... .......... .......... .......... 93% 1.23M 34s\n495900K .......... .......... .......... .......... .......... 93% 1.23M 34s\n495950K .......... .......... .......... .......... .......... 93% 882K 34s\n496000K .......... .......... .......... .......... .......... 93% 1.26M 34s\n496050K .......... .......... .......... .......... .......... 93% 1.16M 34s\n496100K .......... .......... .......... .......... .......... 93% 1.21M 34s\n496150K .......... .......... .......... .......... .......... 93% 1.19M 33s\n496200K .......... .......... .......... .......... .......... 93% 1.20M 33s\n496250K .......... .......... .......... .......... .......... 93% 1.19M 33s\n496300K .......... .......... .......... .......... .......... 93% 1.20M 33s\n496350K .......... .......... .......... .......... .......... 93% 906K 33s\n496400K .......... .......... .......... .......... .......... 93% 1.19M 33s\n496450K .......... .......... .......... .......... .......... 93% 1.09M 33s\n496500K .......... .......... .......... .......... .......... 93% 1.31M 33s\n496550K .......... .......... .......... .......... .......... 93% 1.03M 33s\n496600K .......... .......... .......... .......... .......... 93% 1.35M 33s\n496650K .......... .......... .......... .......... .......... 93% 1.21M 33s\n496700K .......... .......... .......... .......... .......... 93% 1.19M 33s\n496750K .......... .......... .......... .......... .......... 93% 898K 33s\n496800K .......... .......... .......... .......... .......... 93% 1.14M 33s\n496850K .......... .......... .......... .......... .......... 93% 1.22M 33s\n496900K .......... .......... .......... .......... .......... 93% 1.12M 33s\n496950K .......... .......... .......... .......... .......... 93% 1.29M 33s\n497000K .......... .......... .......... .......... .......... 93% 1.18M 33s\n497050K .......... .......... .......... .......... .......... 93% 1.12M 33s\n497100K .......... .......... .......... .......... .......... 93% 1.24M 33s\n497150K .......... .......... .......... .......... .......... 93% 929K 33s\n497200K .......... .......... .......... .......... .......... 93% 1.20M 32s\n497250K .......... .......... .......... .......... .......... 93% 1.19M 32s\n497300K .......... .......... .......... .......... .......... 93% 1.19M 32s\n497350K .......... .......... .......... .......... .......... 93% 1.18M 32s\n497400K .......... .......... .......... .......... .......... 93% 1.17M 32s\n497450K .......... .......... .......... .......... .......... 93% 1.21M 32s\n497500K .......... .......... .......... .......... .......... 93% 1.19M 32s\n497550K .......... .......... .......... .......... .......... 93% 922K 32s\n497600K .......... .......... .......... .......... .......... 93% 1.11M 32s\n497650K .......... .......... .......... .......... .......... 93% 1.27M 32s\n497700K .......... .......... .......... .......... .......... 93% 1.21M 32s\n497750K .......... .......... .......... .......... .......... 93% 1.17M 32s\n497800K .......... .......... .......... .......... .......... 93% 1.20M 32s\n497850K .......... .......... .......... .......... .......... 93% 1.14M 32s\n497900K .......... .......... .......... .......... .......... 93% 1.19M 32s\n497950K .......... .......... .......... .......... .......... 93% 912K 32s\n498000K .......... .......... .......... .......... .......... 93% 1.02M 32s\n498050K .......... .......... .......... .......... .......... 93% 1.40M 32s\n498100K .......... .......... .......... .......... .......... 93% 1.20M 32s\n498150K .......... .......... .......... .......... .......... 93% 1.19M 32s\n498200K .......... .......... .......... .......... .......... 93% 1.19M 32s\n498250K .......... .......... .......... .......... .......... 93% 1.21M 31s\n498300K .......... .......... .......... .......... .......... 93% 1.19M 31s\n498350K .......... .......... .......... .......... .......... 93% 855K 31s\n498400K .......... .......... .......... .......... .......... 93% 1.22M 31s\n498450K .......... .......... .......... .......... .......... 93% 1.22M 31s\n498500K .......... .......... .......... .......... .......... 93% 1.21M 31s\n498550K .......... .......... .......... .......... .......... 93% 1.21M 31s\n498600K .......... .......... .......... .......... .......... 93% 1.16M 31s\n498650K .......... .......... .......... .......... .......... 93% 1.22M 31s\n498700K .......... .......... .......... .......... .......... 93% 1.05M 31s\n498750K .......... .......... .......... .......... .......... 93% 978K 31s\n498800K .......... .......... .......... .......... .......... 93% 1.23M 31s\n498850K .......... .......... .......... .......... .......... 93% 1.16M 31s\n498900K .......... .......... .......... .......... .......... 93% 1.14M 31s\n498950K .......... .......... .......... .......... .......... 93% 1.26M 31s\n499000K .......... .......... .......... .......... .......... 93% 1.06M 31s\n499050K .......... .......... .......... .......... .......... 93% 1.34M 31s\n499100K .......... .......... .......... .......... .......... 93% 1.18M 31s\n499150K .......... .......... .......... .......... .......... 93% 930K 31s\n499200K .......... .......... .......... .......... .......... 93% 1.18M 31s\n499250K .......... .......... .......... .......... .......... 93% 1.18M 31s\n499300K .......... .......... .......... .......... .......... 93% 1.17M 31s\n499350K .......... .......... .......... .......... .......... 93% 1.20M 30s\n499400K .......... .......... .......... .......... .......... 93% 1.17M 30s\n499450K .......... .......... .......... .......... .......... 93% 1.21M 30s\n499500K .......... .......... .......... .......... .......... 93% 1.23M 30s\n499550K .......... .......... .......... .......... .......... 93% 864K 30s\n499600K .......... .......... .......... .......... .......... 93% 1.25M 30s\n499650K .......... .......... .......... .......... .......... 93% 1.19M 30s\n499700K .......... .......... .......... .......... .......... 93% 1.15M 30s\n499750K .......... .......... .......... .......... .......... 93% 1.14M 30s\n499800K .......... .......... .......... .......... .......... 93% 1.27M 30s\n499850K .......... .......... .......... .......... .......... 93% 1.21M 30s\n499900K .......... .......... .......... .......... .......... 94% 1.19M 30s\n499950K .......... .......... .......... .......... .......... 94% 882K 30s\n500000K .......... .......... .......... .......... .......... 94% 1.18M 30s\n500050K .......... .......... .......... .......... .......... 94% 1.19M 30s\n500100K .......... .......... .......... .......... .......... 94% 1.18M 30s\n500150K .......... .......... .......... .......... .......... 94% 1.19M 30s\n500200K .......... .......... .......... .......... .......... 94% 1.20M 30s\n500250K .......... .......... .......... .......... .......... 94% 1.13M 30s\n500300K .......... .......... .......... .......... .......... 94% 1.24M 30s\n500350K .......... .......... .......... .......... .......... 94% 919K 30s\n500400K .......... .......... .......... .......... .......... 94% 1.17M 29s\n500450K .......... .......... .......... .......... .......... 94% 1.22M 29s\n500500K .......... .......... .......... .......... .......... 94% 1.16M 29s\n500550K .......... .......... .......... .......... .......... 94% 1.21M 29s\n500600K .......... .......... .......... .......... .......... 94% 1.18M 29s\n500650K .......... .......... .......... .......... .......... 94% 1.21M 29s\n500700K .......... .......... .......... .......... .......... 94% 1.18M 29s\n500750K .......... .......... .......... .......... .......... 94% 923K 29s\n500800K .......... .......... .......... .......... .......... 94% 1.11M 29s\n500850K .......... .......... .......... .......... .......... 94% 1.19M 29s\n500900K .......... .......... .......... .......... .......... 94% 1.20M 29s\n500950K .......... .......... .......... .......... .......... 94% 1.10M 29s\n501000K .......... .......... .......... .......... .......... 94% 702K 29s\n501050K .......... .......... .......... .......... .......... 94% 5.67M 29s\n501100K .......... .......... .......... .......... .......... 94% 1.19M 29s\n501150K .......... .......... .......... .......... .......... 94% 882K 29s\n501200K .......... .......... .......... .......... .......... 94% 1.14M 29s\n501250K .......... .......... .......... .......... .......... 94% 1.19M 29s\n501300K .......... .......... .......... .......... .......... 94% 1.21M 29s\n501350K .......... .......... .......... .......... .......... 94% 1.16M 29s\n501400K .......... .......... .......... .......... .......... 94% 1.13M 29s\n501450K .......... .......... .......... .......... .......... 94% 1.25M 28s\n501500K .......... .......... .......... .......... .......... 94% 1.19M 28s\n501550K .......... .......... .......... .......... .......... 94% 881K 28s\n501600K .......... .......... .......... .......... .......... 94% 1.09M 28s\n501650K .......... .......... .......... .......... .......... 94% 1.35M 28s\n501700K .......... .......... .......... .......... .......... 94% 1.15M 28s\n501750K .......... .......... .......... .......... .......... 94% 1.25M 28s\n501800K .......... .......... .......... .......... .......... 94% 1.12M 28s\n501850K .......... .......... .......... .......... .......... 94% 1.26M 28s\n501900K .......... .......... .......... .......... .......... 94% 1.15M 28s\n501950K .......... .......... .......... .......... .......... 94% 169K 28s\n502000K .......... .......... .......... .......... .......... 94% 401M 28s\n502050K .......... .......... .......... .......... .......... 94% 502M 28s\n502100K .......... .......... .......... .......... .......... 94% 1.36M 28s\n502150K .......... .......... .......... .......... .......... 94% 318M 28s\n502200K .......... .......... .......... .......... .......... 94% 600K 28s\n502250K .......... .......... .......... .......... .......... 94% 170K 28s\n502300K .......... .......... .......... .......... .......... 94% 2.96M 28s\n502350K .......... .......... .......... .......... .......... 94% 20.0M 28s\n502400K .......... .......... .......... .......... .......... 94% 355M 28s\n502450K .......... .......... .......... .......... .......... 94% 418M 28s\n502500K .......... .......... .......... .......... .......... 94% 41.7M 28s\n502550K .......... .......... .......... .......... .......... 94% 1.09M 27s\n502600K .......... .......... .......... .......... .......... 94% 1.17M 27s\n502650K .......... .......... .......... .......... .......... 94% 1.17M 27s\n502700K .......... .......... .......... .......... .......... 94% 1.23M 27s\n502750K .......... .......... .......... .......... .......... 94% 881K 27s\n502800K .......... .......... .......... .......... .......... 94% 1.26M 27s\n502850K .......... .......... .......... .......... .......... 94% 1.18M 27s\n502900K .......... .......... .......... .......... .......... 94% 1.11M 27s\n502950K .......... .......... .......... .......... .......... 94% 1.31M 27s\n503000K .......... .......... .......... .......... .......... 94% 1.16M 27s\n503050K .......... .......... .......... .......... .......... 94% 1.14M 27s\n503100K .......... .......... .......... .......... .......... 94% 1.20M 27s\n503150K .......... .......... .......... .......... .......... 94% 911K 27s\n503200K .......... .......... .......... .......... .......... 94% 1.16M 27s\n503250K .......... .......... .......... .......... .......... 94% 1.22M 27s\n503300K .......... .......... .......... .......... .......... 94% 1.18M 27s\n503350K .......... .......... .......... .......... .......... 94% 1.21M 27s\n503400K .......... .......... .......... .......... .......... 94% 1.14M 27s\n503450K .......... .......... .......... .......... .......... 94% 1.21M 27s\n503500K .......... .......... .......... .......... .......... 94% 1.21M 27s\n503550K .......... .......... .......... .......... .......... 94% 870K 27s\n503600K .......... .......... .......... .......... .......... 94% 1.17M 26s\n503650K .......... .......... .......... .......... .......... 94% 1.27M 26s\n503700K .......... .......... .......... .......... .......... 94% 1.15M 26s\n503750K .......... .......... .......... .......... .......... 94% 1.04M 26s\n503800K .......... .......... .......... .......... .......... 94% 1.31M 26s\n503850K .......... .......... .......... .......... .......... 94% 1.29M 26s\n503900K .......... .......... .......... .......... .......... 94% 1.19M 26s\n503950K .......... .......... .......... .......... .......... 94% 907K 26s\n504000K .......... .......... .......... .......... .......... 94% 1.20M 26s\n504050K .......... .......... .......... .......... .......... 94% 1.18M 26s\n504100K .......... .......... .......... .......... .......... 94% 1.21M 26s\n504150K .......... .......... .......... .......... .......... 94% 1.18M 26s\n504200K .......... .......... .......... .......... .......... 94% 1.18M 26s\n504250K .......... .......... .......... .......... .......... 94% 1.19M 26s\n504300K .......... .......... .......... .......... .......... 94% 1.21M 26s\n504350K .......... .......... .......... .......... .......... 94% 881K 26s\n504400K .......... .......... .......... .......... .......... 94% 1.20M 26s\n504450K .......... .......... .......... .......... .......... 94% 1.21M 26s\n504500K .......... .......... .......... .......... .......... 94% 1.17M 26s\n504550K .......... .......... .......... .......... .......... 94% 1.21M 26s\n504600K .......... .......... .......... .......... .......... 94% 1.17M 26s\n504650K .......... .......... .......... .......... .......... 94% 1.24M 25s\n504700K .......... .......... .......... .......... .......... 94% 1.15M 25s\n504750K .......... .......... .......... .......... .......... 94% 917K 25s\n504800K .......... .......... .......... .......... .......... 94% 1.21M 25s\n504850K .......... .......... .......... .......... .......... 94% 1.21M 25s\n504900K .......... .......... .......... .......... .......... 94% 1.17M 25s\n504950K .......... .......... .......... .......... .......... 94% 1.16M 25s\n505000K .......... .......... .......... .......... .......... 94% 1.15M 25s\n505050K .......... .......... .......... .......... .......... 94% 1.23M 25s\n505100K .......... .......... .......... .......... .......... 94% 1.18M 25s\n505150K .......... .......... .......... .......... .......... 94% 928K 25s\n505200K .......... .......... .......... .......... .......... 94% 1.19M 25s\n505250K .......... .......... .......... .......... .......... 95% 1.19M 25s\n505300K .......... .......... .......... .......... .......... 95% 1.18M 25s\n505350K .......... .......... .......... .......... .......... 95% 1.19M 25s\n505400K .......... .......... .......... .......... .......... 95% 1.13M 25s\n505450K .......... .......... .......... .......... .......... 95% 1.26M 25s\n505500K .......... .......... .......... .......... .......... 95% 1.18M 25s\n505550K .......... .......... .......... .......... .......... 95% 897K 25s\n505600K .......... .......... .......... .......... .......... 95% 1.19M 25s\n505650K .......... .......... .......... .......... .......... 95% 1.20M 25s\n505700K .......... .......... .......... .......... .......... 95% 1.20M 24s\n505750K .......... .......... .......... .......... .......... 95% 1.17M 24s\n505800K .......... .......... .......... .......... .......... 95% 1.20M 24s\n505850K .......... .......... .......... .......... .......... 95% 1.18M 24s\n505900K .......... .......... .......... .......... .......... 95% 1.15M 24s\n505950K .......... .......... .......... .......... .......... 95% 929K 24s\n506000K .......... .......... .......... .......... .......... 95% 1.19M 24s\n506050K .......... .......... .......... .......... .......... 95% 1.22M 24s\n506100K .......... .......... .......... .......... .......... 95% 1.15M 24s\n506150K .......... .......... .......... .......... .......... 95% 1.20M 24s\n506200K .......... .......... .......... .......... .......... 95% 1.08M 24s\n506250K .......... .......... .......... .......... .......... 95% 1.33M 24s\n506300K .......... .......... .......... .......... .......... 95% 1.18M 24s\n506350K .......... .......... .......... .......... .......... 95% 889K 24s\n506400K .......... .......... .......... .......... .......... 95% 1.20M 24s\n506450K .......... .......... .......... .......... .......... 95% 1.14M 24s\n506500K .......... .......... .......... .......... .......... 95% 1.25M 24s\n506550K .......... .......... .......... .......... .......... 95% 1.18M 24s\n506600K .......... .......... .......... .......... .......... 95% 1.18M 24s\n506650K .......... .......... .......... .......... .......... 95% 1.16M 24s\n506700K .......... .......... .......... .......... .......... 95% 1.21M 24s\n506750K .......... .......... .......... .......... .......... 95% 880K 23s\n506800K .......... .......... .......... .......... .......... 95% 1.27M 23s\n506850K .......... .......... .......... .......... .......... 95% 1.21M 23s\n506900K .......... .......... .......... .......... .......... 95% 1.18M 23s\n506950K .......... .......... .......... .......... .......... 95% 1.06M 23s\n507000K .......... .......... .......... .......... .......... 95% 1.35M 23s\n507050K .......... .......... .......... .......... .......... 95% 1.19M 23s\n507100K .......... .......... .......... .......... .......... 95% 1.16M 23s\n507150K .......... .......... .......... .......... .......... 95% 910K 23s\n507200K .......... .......... .......... .......... .......... 95% 1.23M 23s\n507250K .......... .......... .......... .......... .......... 95% 1.03M 23s\n507300K .......... .......... .......... .......... .......... 95% 1.42M 23s\n507350K .......... .......... .......... .......... .......... 95% 1.21M 23s\n507400K .......... .......... .......... .......... .......... 95% 1.11M 23s\n507450K .......... .......... .......... .......... .......... 95% 1.22M 23s\n507500K .......... .......... .......... .......... .......... 95% 1.21M 23s\n507550K .......... .......... .......... .......... .......... 95% 916K 23s\n507600K .......... .......... .......... .......... .......... 95% 1.17M 23s\n507650K .......... .......... .......... .......... .......... 95% 1.19M 23s\n507700K .......... .......... .......... .......... .......... 95% 1.18M 23s\n507750K .......... .......... .......... .......... .......... 95% 1.16M 23s\n507800K .......... .......... .......... .......... .......... 95% 1.22M 23s\n507850K .......... .......... .......... .......... .......... 95% 1.19M 22s\n507900K .......... .......... .......... .......... .......... 95% 1.19M 22s\n507950K .......... .......... .......... .......... .......... 95% 899K 22s\n508000K .......... .......... .......... .......... .......... 95% 1.19M 22s\n508050K .......... .......... .......... .......... .......... 95% 1.19M 22s\n508100K .......... .......... .......... .......... .......... 95% 1.18M 22s\n508150K .......... .......... .......... .......... .......... 95% 1.21M 22s\n508200K .......... .......... .......... .......... .......... 95% 1.18M 22s\n508250K .......... .......... .......... .......... .......... 95% 1.21M 22s\n508300K .......... .......... .......... .......... .......... 95% 1.20M 22s\n508350K .......... .......... .......... .......... .......... 95% 905K 22s\n508400K .......... .......... .......... .......... .......... 95% 1.21M 22s\n508450K .......... .......... .......... .......... .......... 95% 1.20M 22s\n508500K .......... .......... .......... .......... .......... 95% 1.16M 22s\n508550K .......... .......... .......... .......... .......... 95% 1.21M 22s\n508600K .......... .......... .......... .......... .......... 95% 1.19M 22s\n508650K .......... .......... .......... .......... .......... 95% 1.15M 22s\n508700K .......... .......... .......... .......... .......... 95% 1.18M 22s\n508750K .......... .......... .......... .......... .......... 95% 903K 22s\n508800K .......... .......... .......... .......... .......... 95% 1.23M 22s\n508850K .......... .......... .......... .......... .......... 95% 1.17M 22s\n508900K .......... .......... .......... .......... .......... 95% 1.19M 21s\n508950K .......... .......... .......... .......... .......... 95% 1.21M 21s\n509000K .......... .......... .......... .......... .......... 95% 1.18M 21s\n509050K .......... .......... .......... .......... .......... 95% 1.16M 21s\n509100K .......... .......... .......... .......... .......... 95% 1.19M 21s\n509150K .......... .......... .......... .......... .......... 95% 928K 21s\n509200K .......... .......... .......... .......... .......... 95% 1.17M 21s\n509250K .......... .......... .......... .......... .......... 95% 1.21M 21s\n509300K .......... .......... .......... .......... .......... 95% 1.17M 21s\n509350K .......... .......... .......... .......... .......... 95% 1.19M 21s\n509400K .......... .......... .......... .......... .......... 95% 1.19M 21s\n509450K .......... .......... .......... .......... .......... 95% 1.17M 21s\n509500K .......... .......... .......... .......... .......... 95% 1.19M 21s\n509550K .......... .......... .......... .......... .......... 95% 898K 21s\n509600K .......... .......... .......... .......... .......... 95% 1.17M 21s\n509650K .......... .......... .......... .......... .......... 95% 1.17M 21s\n509700K .......... .......... .......... .......... .......... 95% 1.16M 21s\n509750K .......... .......... .......... .......... .......... 95% 1.22M 21s\n509800K .......... .......... .......... .......... .......... 95% 1.13M 21s\n509850K .......... .......... .......... .......... .......... 95% 170K 21s\n509900K .......... .......... .......... .......... .......... 95% 150M 21s\n509950K .......... .......... .......... .......... .......... 95% 129M 20s\n510000K .......... .......... .......... .......... .......... 95% 1.45M 20s\n510050K .......... .......... .......... .......... .......... 95% 149M 20s\n510100K .......... .......... .......... .......... .......... 95% 157M 20s\n510150K .......... .......... .......... .......... .......... 95% 727K 20s\n510200K .......... .......... .......... .......... .......... 95% 1.17M 20s\n510250K .......... .......... .......... .......... .......... 95% 1.18M 20s\n510300K .......... .......... .......... .......... .......... 95% 1.19M 20s\n510350K .......... .......... .......... .......... .......... 95% 932K 20s\n510400K .......... .......... .......... .......... .......... 95% 1.20M 20s\n510450K .......... .......... .......... .......... .......... 95% 1.16M 20s\n510500K .......... .......... .......... .......... .......... 95% 1.18M 20s\n510550K .......... .......... .......... .......... .......... 96% 1.17M 20s\n510600K .......... .......... .......... .......... .......... 96% 1.20M 20s\n510650K .......... .......... .......... .......... .......... 96% 1.15M 20s\n510700K .......... .......... .......... .......... .......... 96% 1.22M 20s\n510750K .......... .......... .......... .......... .......... 96% 149K 20s\n510800K .......... .......... .......... .......... .......... 96% 128M 20s\n510850K .......... .......... .......... .......... .......... 96% 168M 20s\n510900K .......... .......... .......... .......... .......... 96% 1.48M 20s\n510950K .......... .......... .......... .......... .......... 96% 79.6M 20s\n511000K .......... .......... .......... .......... .......... 96% 143M 20s\n511050K .......... .......... .......... .......... .......... 96% 179K 19s\n511100K .......... .......... .......... .......... .......... 96% 2.70M 19s\n511150K .......... .......... .......... .......... .......... 96% 8.73M 19s\n511200K .......... .......... .......... .......... .......... 96% 774K 19s\n511250K .......... .......... .......... .......... .......... 96% 1.44M 19s\n511300K .......... .......... .......... .......... .......... 96% 90.5M 19s\n511350K .......... .......... .......... .......... .......... 96% 140M 19s\n511400K .......... .......... .......... .......... .......... 96% 1005K 19s\n511450K .......... .......... .......... .......... .......... 96% 1.21M 19s\n511500K .......... .......... .......... .......... .......... 96% 1.17M 19s\n511550K .......... .......... .......... .......... .......... 96% 919K 19s\n511600K .......... .......... .......... .......... .......... 96% 1.21M 19s\n511650K .......... .......... .......... .......... .......... 96% 1.17M 19s\n511700K .......... .......... .......... .......... .......... 96% 1.17M 19s\n511750K .......... .......... .......... .......... .......... 96% 1.23M 19s\n511800K .......... .......... .......... .......... .......... 96% 1.16M 19s\n511850K .......... .......... .......... .......... .......... 96% 1.15M 19s\n511900K .......... .......... .......... .......... .......... 96% 1.20M 19s\n511950K .......... .......... .......... .......... .......... 96% 894K 19s\n512000K .......... .......... .......... .......... .......... 96% 1.21M 19s\n512050K .......... .......... .......... .......... .......... 96% 1.17M 19s\n512100K .......... .......... .......... .......... .......... 96% 1.20M 18s\n512150K .......... .......... .......... .......... .......... 96% 1.21M 18s\n512200K .......... .......... .......... .......... .......... 96% 213K 18s\n512250K .......... .......... .......... .......... .......... 96% 13.4M 18s\n512300K .......... .......... .......... .......... .......... 96% 11.1M 18s\n512350K .......... .......... .......... .......... .......... 96% 9.08M 18s\n512400K .......... .......... .......... .......... .......... 96% 13.2M 18s\n512450K .......... .......... .......... .......... .......... 96% 2.12M 18s\n512500K .......... .......... .......... .......... .......... 96% 1.16M 18s\n512550K .......... .......... .......... .......... .......... 96% 1023K 18s\n512600K .......... .......... .......... .......... .......... 96% 1.48M 18s\n512650K .......... .......... .......... .......... .......... 96% 1.20M 18s\n512700K .......... .......... .......... .......... .......... 96% 1.17M 18s\n512750K .......... .......... .......... .......... .......... 96% 903K 18s\n512800K .......... .......... .......... .......... .......... 96% 1.18M 18s\n512850K .......... .......... .......... .......... .......... 96% 1.23M 18s\n512900K .......... .......... .......... .......... .......... 96% 1.08M 18s\n512950K .......... .......... .......... .......... .......... 96% 1.27M 18s\n513000K .......... .......... .......... .......... .......... 96% 1.07M 18s\n513050K .......... .......... .......... .......... .......... 96% 1.30M 18s\n513100K .......... .......... .......... .......... .......... 96% 1.26M 18s\n513150K .......... .......... .......... .......... .......... 96% 898K 17s\n513200K .......... .......... .......... .......... .......... 96% 1.20M 17s\n513250K .......... .......... .......... .......... .......... 96% 1.17M 17s\n513300K .......... .......... .......... .......... .......... 96% 208K 17s\n513350K .......... .......... .......... .......... .......... 96% 248M 17s\n513400K .......... .......... .......... .......... .......... 96% 30.2M 17s\n513450K .......... .......... .......... .......... .......... 96% 266M 17s\n513500K .......... .......... .......... .......... .......... 96% 27.1M 17s\n513550K .......... .......... .......... .......... .......... 96% 1.23M 17s\n513600K .......... .......... .......... .......... .......... 96% 1.10M 17s\n513650K .......... .......... .......... .......... .......... 96% 1.06M 17s\n513700K .......... .......... .......... .......... .......... 96% 1.50M 17s\n513750K .......... .......... .......... .......... .......... 96% 1.17M 17s\n513800K .......... .......... .......... .......... .......... 96% 1.16M 17s\n513850K .......... .......... .......... .......... .......... 96% 1.20M 17s\n513900K .......... .......... .......... .......... .......... 96% 1.19M 17s\n513950K .......... .......... .......... .......... .......... 96% 886K 17s\n514000K .......... .......... .......... .......... .......... 96% 1.24M 17s\n514050K .......... .......... .......... .......... .......... 96% 1.18M 17s\n514100K .......... .......... .......... .......... .......... 96% 1.14M 17s\n514150K .......... .......... .......... .......... .......... 96% 1.14M 17s\n514200K .......... .......... .......... .......... .......... 96% 1.22M 17s\n514250K .......... .......... .......... .......... .......... 96% 1.20M 16s\n514300K .......... .......... .......... .......... .......... 96% 1.25M 16s\n514350K .......... .......... .......... .......... .......... 96% 815K 16s\n514400K .......... .......... .......... .......... .......... 96% 1.46M 16s\n514450K .......... .......... .......... .......... .......... 96% 1.19M 16s\n514500K .......... .......... .......... .......... .......... 96% 1.15M 16s\n514550K .......... .......... .......... .......... .......... 96% 1.18M 16s\n514600K .......... .......... .......... .......... .......... 96% 1.23M 16s\n514650K .......... .......... .......... .......... .......... 96% 1.18M 16s\n514700K .......... .......... .......... .......... .......... 96% 1.21M 16s\n514750K .......... .......... .......... .......... .......... 96% 894K 16s\n514800K .......... .......... .......... .......... .......... 96% 1.17M 16s\n514850K .......... .......... .......... .......... .......... 96% 1.19M 16s\n514900K .......... .......... .......... .......... .......... 96% 1.20M 16s\n514950K .......... .......... .......... .......... .......... 96% 1.21M 16s\n515000K .......... .......... .......... .......... .......... 96% 1.15M 16s\n515050K .......... .......... .......... .......... .......... 96% 1.24M 16s\n515100K .......... .......... .......... .......... .......... 96% 1.16M 16s\n515150K .......... .......... .......... .......... .......... 96% 897K 16s\n515200K .......... .......... .......... .......... .......... 96% 1.19M 16s\n515250K .......... .......... .......... .......... .......... 96% 1.18M 16s\n515300K .......... .......... .......... .......... .......... 96% 1.20M 15s\n515350K .......... .......... .......... .......... .......... 96% 1.21M 15s\n515400K .......... .......... .......... .......... .......... 96% 1.19M 15s\n515450K .......... .......... .......... .......... .......... 96% 1.13M 15s\n515500K .......... .......... .......... .......... .......... 96% 1.17M 15s\n515550K .......... .......... .......... .......... .......... 96% 970K 15s\n515600K .......... .......... .......... .......... .......... 96% 1.16M 15s\n515650K .......... .......... .......... .......... .......... 96% 1.17M 15s\n515700K .......... .......... .......... .......... .......... 96% 1.17M 15s\n515750K .......... .......... .......... .......... .......... 96% 1.21M 15s\n515800K .......... .......... .......... .......... .......... 96% 1.13M 15s\n515850K .......... .......... .......... .......... .......... 96% 1.26M 15s\n515900K .......... .......... .......... .......... .......... 97% 1.17M 15s\n515950K .......... .......... .......... .......... .......... 97% 899K 15s\n516000K .......... .......... .......... .......... .......... 97% 1.21M 15s\n516050K .......... .......... .......... .......... .......... 97% 1.16M 15s\n516100K .......... .......... .......... .......... .......... 97% 1.21M 15s\n516150K .......... .......... .......... .......... .......... 97% 1.19M 15s\n516200K .......... .......... .......... .......... .......... 97% 1.20M 15s\n516250K .......... .......... .......... .......... .......... 97% 1.18M 15s\n516300K .......... .......... .......... .......... .......... 97% 1.20M 15s\n516350K .......... .......... .......... .......... .......... 97% 937K 14s\n516400K .......... .......... .......... .......... .......... 97% 1.16M 14s\n516450K .......... .......... .......... .......... .......... 97% 1.09M 14s\n516500K .......... .......... .......... .......... .......... 97% 1.22M 14s\n516550K .......... .......... .......... .......... .......... 97% 1.16M 14s\n516600K .......... .......... .......... .......... .......... 97% 1.28M 14s\n516650K .......... .......... .......... .......... .......... 97% 1.19M 14s\n516700K .......... .......... .......... .......... .......... 97% 1.03M 14s\n516750K .......... .......... .......... .......... .......... 97% 987K 14s\n516800K .......... .......... .......... .......... .......... 97% 1.24M 14s\n516850K .......... .......... .......... .......... .......... 97% 1.17M 14s\n516900K .......... .......... .......... .......... .......... 97% 1.24M 14s\n516950K .......... .......... .......... .......... .......... 97% 1.06M 14s\n517000K .......... .......... .......... .......... .......... 97% 1.36M 14s\n517050K .......... .......... .......... .......... .......... 97% 1.17M 14s\n517100K .......... .......... .......... .......... .......... 97% 1.15M 14s\n517150K .......... .......... .......... .......... .......... 97% 914K 14s\n517200K .......... .......... .......... .......... .......... 97% 1.18M 14s\n517250K .......... .......... .......... .......... .......... 97% 1.24M 14s\n517300K .......... .......... .......... .......... .......... 97% 1.15M 14s\n517350K .......... .......... .......... .......... .......... 97% 1.17M 14s\n517400K .......... .......... .......... .......... .......... 97% 1.26M 13s\n517450K .......... .......... .......... .......... .......... 97% 1.16M 13s\n517500K .......... .......... .......... .......... .......... 97% 1.17M 13s\n517550K .......... .......... .......... .......... .......... 97% 593K 13s\n517600K .......... .......... .......... .......... .......... 97% 4.31M 13s\n517650K .......... .......... .......... .......... .......... 97% 1.21M 13s\n517700K .......... .......... .......... .......... .......... 97% 1.10M 13s\n517750K .......... .......... .......... .......... .......... 97% 1.11M 13s\n517800K .......... .......... .......... .......... .......... 97% 1.38M 13s\n517850K .......... .......... .......... .......... .......... 97% 1.21M 13s\n517900K .......... .......... .......... .......... .......... 97% 1.16M 13s\n517950K .......... .......... .......... .......... .......... 97% 935K 13s\n518000K .......... .......... .......... .......... .......... 97% 1.04M 13s\n518050K .......... .......... .......... .......... .......... 97% 1.40M 13s\n518100K .......... .......... .......... .......... .......... 97% 1.18M 13s\n518150K .......... .......... .......... .......... .......... 97% 1.14M 13s\n518200K .......... .......... .......... .......... .......... 97% 1.19M 13s\n518250K .......... .......... .......... .......... .......... 97% 1.24M 13s\n518300K .......... .......... .......... .......... .......... 97% 1.18M 13s\n518350K .......... .......... .......... .......... .......... 97% 897K 13s\n518400K .......... .......... .......... .......... .......... 97% 1.21M 13s\n518450K .......... .......... .......... .......... .......... 97% 1.12M 13s\n518500K .......... .......... .......... .......... .......... 97% 1.14M 12s\n518550K .......... .......... .......... .......... .......... 97% 1.28M 12s\n518600K .......... .......... .......... .......... .......... 97% 1.21M 12s\n518650K .......... .......... .......... .......... .......... 97% 1.10M 12s\n518700K .......... .......... .......... .......... .......... 97% 1.25M 12s\n518750K .......... .......... .......... .......... .......... 97% 923K 12s\n518800K .......... .......... .......... .......... .......... 97% 1.19M 12s\n518850K .......... .......... .......... .......... .......... 97% 1.16M 12s\n518900K .......... .......... .......... .......... .......... 97% 1.25M 12s\n518950K .......... .......... .......... .......... .......... 97% 1.16M 12s\n519000K .......... .......... .......... .......... .......... 97% 1.12M 12s\n519050K .......... .......... .......... .......... .......... 97% 1.26M 12s\n519100K .......... .......... .......... .......... .......... 97% 1.20M 12s\n519150K .......... .......... .......... .......... .......... 97% 886K 12s\n519200K .......... .......... .......... .......... .......... 97% 1.00M 12s\n519250K .......... .......... .......... .......... .......... 97% 1.51M 12s\n519300K .......... .......... .......... .......... .......... 97% 1.20M 12s\n519350K .......... .......... .......... .......... .......... 97% 1.15M 12s\n519400K .......... .......... .......... .......... .......... 97% 1.11M 12s\n519450K .......... .......... .......... .......... .......... 97% 1.28M 12s\n519500K .......... .......... .......... .......... .......... 97% 999K 12s\n519550K .......... .......... .......... .......... .......... 97% 1.07M 11s\n519600K .......... .......... .......... .......... .......... 97% 1.08M 11s\n519650K .......... .......... .......... .......... .......... 97% 1.24M 11s\n519700K .......... .......... .......... .......... .......... 97% 1.25M 11s\n519750K .......... .......... .......... .......... .......... 97% 1.00M 11s\n519800K .......... .......... .......... .......... .......... 97% 1.53M 11s\n519850K .......... .......... .......... .......... .......... 97% 1.17M 11s\n519900K .......... .......... .......... .......... .......... 97% 1.20M 11s\n519950K .......... .......... .......... .......... .......... 97% 920K 11s\n520000K .......... .......... .......... .......... .......... 97% 1.12M 11s\n520050K .......... .......... .......... .......... .......... 97% 1.22M 11s\n520100K .......... .......... .......... .......... .......... 97% 1.03M 11s\n520150K .......... .......... .......... .......... .......... 97% 1.44M 11s\n520200K .......... .......... .......... .......... .......... 97% 1004K 11s\n520250K .......... .......... .......... .......... .......... 97% 1.50M 11s\n520300K .......... .......... .......... .......... .......... 97% 1.11M 11s\n520350K .......... .......... .......... .......... .......... 97% 936K 11s\n520400K .......... .......... .......... .......... .......... 97% 1.25M 11s\n520450K .......... .......... .......... .......... .......... 97% 1.16M 11s\n520500K .......... .......... .......... .......... .......... 97% 1.23M 11s\n520550K .......... .......... .......... .......... .......... 97% 1.15M 11s\n520600K .......... .......... .......... .......... .......... 97% 169K 10s\n520650K .......... .......... .......... .......... .......... 97% 69.3M 10s\n520700K .......... .......... .......... .......... .......... 97% 128M 10s\n520750K .......... .......... .......... .......... .......... 97% 479K 10s\n520800K .......... .......... .......... .......... .......... 97% 311M 10s\n520850K .......... .......... .......... .......... .......... 97% 348M 10s\n520900K .......... .......... .......... .......... .......... 97% 779K 10s\n520950K .......... .......... .......... .......... .......... 97% 1.16M 10s\n521000K .......... .......... .......... .......... .......... 97% 1.20M 10s\n521050K .......... .......... .......... .......... .......... 97% 1.15M 10s\n521100K .......... .......... .......... .......... .......... 97% 1.27M 10s\n521150K .......... .......... .......... .......... .......... 97% 904K 10s\n521200K .......... .......... .......... .......... .......... 98% 1.18M 10s\n521250K .......... .......... .......... .......... .......... 98% 1.01M 10s\n521300K .......... .......... .......... .......... .......... 98% 1.42M 10s\n521350K .......... .......... .......... .......... .......... 98% 1.10M 10s\n521400K .......... .......... .......... .......... .......... 98% 1.16M 10s\n521450K .......... .......... .......... .......... .......... 98% 1.32M 10s\n521500K .......... .......... .......... .......... .......... 98% 1.16M 10s\n521550K .......... .......... .......... .......... .......... 98% 846K 10s\n521600K .......... .......... .......... .......... .......... 98% 1.28M 10s\n521650K .......... .......... .......... .......... .......... 98% 1.17M 10s\n521700K .......... .......... .......... .......... .......... 98% 1.25M 9s\n521750K .......... .......... .......... .......... .......... 98% 1.20M 9s\n521800K .......... .......... .......... .......... .......... 98% 1.19M 9s\n521850K .......... .......... .......... .......... .......... 98% 1.17M 9s\n521900K .......... .......... .......... .......... .......... 98% 1.22M 9s\n521950K .......... .......... .......... .......... .......... 98% 919K 9s\n522000K .......... .......... .......... .......... .......... 98% 1.19M 9s\n522050K .......... .......... .......... .......... .......... 98% 1.19M 9s\n522100K .......... .......... .......... .......... .......... 98% 1.20M 9s\n522150K .......... .......... .......... .......... .......... 98% 1.18M 9s\n522200K .......... .......... .......... .......... .......... 98% 216K 9s\n522250K .......... .......... .......... .......... .......... 98% 9.96M 9s\n522300K .......... .......... .......... .......... .......... 98% 429M 9s\n522350K .......... .......... .......... .......... .......... 98% 6.33M 9s\n522400K .......... .......... .......... .......... .......... 98% 5.05M 9s\n522450K .......... .......... .......... .......... .......... 98% 4.98M 9s\n522500K .......... .......... .......... .......... .......... 98% 204K 9s\n522550K .......... .......... .......... .......... .......... 98% 414M 9s\n522600K .......... .......... .......... .......... .......... 98% 525M 9s\n522650K .......... .......... .......... .......... .......... 98% 67.6M 9s\n522700K .......... .......... .......... .......... .......... 98% 519M 9s\n522750K .......... .......... .......... .......... .......... 98% 967K 8s\n522800K .......... .......... .......... .......... .......... 98% 1.18M 8s\n522850K .......... .......... .......... .......... .......... 98% 1.21M 8s\n522900K .......... .......... .......... .......... .......... 98% 1.16M 8s\n522950K .......... .......... .......... .......... .......... 98% 185K 8s\n523000K .......... .......... .......... .......... .......... 98% 16.3M 8s\n523050K .......... .......... .......... .......... .......... 98% 80.1M 8s\n523100K .......... .......... .......... .......... .......... 98% 125M 8s\n523150K .......... .......... .......... .......... .......... 98% 17.1M 8s\n523200K .......... .......... .......... .......... .......... 98% 126M 8s\n523250K .......... .......... .......... .......... .......... 98% 1013K 8s\n523300K .......... .......... .......... .......... .......... 98% 1.22M 8s\n523350K .......... .......... .......... .......... .......... 98% 1.14M 8s\n523400K .......... .......... .......... .......... .......... 98% 1.14M 8s\n523450K .......... .......... .......... .......... .......... 98% 1.29M 8s\n523500K .......... .......... .......... .......... .......... 98% 1.18M 8s\n523550K .......... .......... .......... .......... .......... 98% 876K 8s\n523600K .......... .......... .......... .......... .......... 98% 1.21M 8s\n523650K .......... .......... .......... .......... .......... 98% 1.23M 8s\n523700K .......... .......... .......... .......... .......... 98% 1.17M 8s\n523750K .......... .......... .......... .......... .......... 98% 1.20M 8s\n523800K .......... .......... .......... .......... .......... 98% 1.13M 7s\n523850K .......... .......... .......... .......... .......... 98% 1.22M 7s\n523900K .......... .......... .......... .......... .......... 98% 1.17M 7s\n523950K .......... .......... .......... .......... .......... 98% 943K 7s\n524000K .......... .......... .......... .......... .......... 98% 1.15M 7s\n524050K .......... .......... .......... .......... .......... 98% 1.15M 7s\n524100K .......... .......... .......... .......... .......... 98% 1.20M 7s\n524150K .......... .......... .......... .......... .......... 98% 1.23M 7s\n524200K .......... .......... .......... .......... .......... 98% 1.13M 7s\n524250K .......... .......... .......... .......... .......... 98% 1.29M 7s\n524300K .......... .......... .......... .......... .......... 98% 1.14M 7s\n524350K .......... .......... .......... .......... .......... 98% 938K 7s\n524400K .......... .......... .......... .......... .......... 98% 1.14M 7s\n524450K .......... .......... .......... .......... .......... 98% 1.20M 7s\n524500K .......... .......... .......... .......... .......... 98% 1.18M 7s\n524550K .......... .......... .......... .......... .......... 98% 1.18M 7s\n524600K .......... .......... .......... .......... .......... 98% 1.13M 7s\n524650K .......... .......... .......... .......... .......... 98% 1.18M 7s\n524700K .......... .......... .......... .......... .......... 98% 1.27M 7s\n524750K .......... .......... .......... .......... .......... 98% 890K 7s\n524800K .......... .......... .......... .......... .......... 98% 1.24M 7s\n524850K .......... .......... .......... .......... .......... 98% 1.16M 7s\n524900K .......... .......... .......... .......... .......... 98% 1.19M 6s\n524950K .......... .......... .......... .......... .......... 98% 1.20M 6s\n525000K .......... .......... .......... .......... .......... 98% 1.09M 6s\n525050K .......... .......... .......... .......... .......... 98% 1.30M 6s\n525100K .......... .......... .......... .......... .......... 98% 1.19M 6s\n525150K .......... .......... .......... .......... .......... 98% 874K 6s\n525200K .......... .......... .......... .......... .......... 98% 1.25M 6s\n525250K .......... .......... .......... .......... .......... 98% 1.21M 6s\n525300K .......... .......... .......... .......... .......... 98% 1.18M 6s\n525350K .......... .......... .......... .......... .......... 98% 1.13M 6s\n525400K .......... .......... .......... .......... .......... 98% 1.25M 6s\n525450K .......... .......... .......... .......... .......... 98% 1.09M 6s\n525500K .......... .......... .......... .......... .......... 98% 1.29M 6s\n525550K .......... .......... .......... .......... .......... 98% 898K 6s\n525600K .......... .......... .......... .......... .......... 98% 1.21M 6s\n525650K .......... .......... .......... .......... .......... 98% 1.18M 6s\n525700K .......... .......... .......... .......... .......... 98% 1.15M 6s\n525750K .......... .......... .......... .......... .......... 98% 1.23M 6s\n525800K .......... .......... .......... .......... .......... 98% 1.20M 6s\n525850K .......... .......... .......... .......... .......... 98% 1.18M 6s\n525900K .......... .......... .......... .......... .......... 98% 1.11M 6s\n525950K .......... .......... .......... .......... .......... 98% 968K 5s\n526000K .......... .......... .......... .......... .......... 98% 1.02M 5s\n526050K .......... .......... .......... .......... .......... 98% 1.23M 5s\n526100K .......... .......... .......... .......... .......... 98% 1.05M 5s\n526150K .......... .......... .......... .......... .......... 98% 1.57M 5s\n526200K .......... .......... .......... .......... .......... 98% 1.22M 5s\n526250K .......... .......... .......... .......... .......... 98% 1.15M 5s\n526300K .......... .......... .......... .......... .......... 98% 1.19M 5s\n526350K .......... .......... .......... .......... .......... 98% 930K 5s\n526400K .......... .......... .......... .......... .......... 98% 1.21M 5s\n526450K .......... .......... .......... .......... .......... 98% 1.17M 5s\n526500K .......... .......... .......... .......... .......... 99% 1.19M 5s\n526550K .......... .......... .......... .......... .......... 99% 1.13M 5s\n526600K .......... .......... .......... .......... .......... 99% 1.24M 5s\n526650K .......... .......... .......... .......... .......... 99% 1.16M 5s\n526700K .......... .......... .......... .......... .......... 99% 1.22M 5s\n526750K .......... .......... .......... .......... .......... 99% 878K 5s\n526800K .......... .......... .......... .......... .......... 99% 1.24M 5s\n526850K .......... .......... .......... .......... .......... 99% 1.17M 5s\n526900K .......... .......... .......... .......... .......... 99% 1.15M 5s\n526950K .......... .......... .......... .......... .......... 99% 1.19M 5s\n527000K .......... .......... .......... .......... .......... 99% 1.26M 4s\n527050K .......... .......... .......... .......... .......... 99% 1.17M 4s\n527100K .......... .......... .......... .......... .......... 99% 1.14M 4s\n527150K .......... .......... .......... .......... .......... 99% 940K 4s\n527200K .......... .......... .......... .......... .......... 99% 1.14M 4s\n527250K .......... .......... .......... .......... .......... 99% 1.17M 4s\n527300K .......... .......... .......... .......... .......... 99% 1.17M 4s\n527350K .......... .......... .......... .......... .......... 99% 1.26M 4s\n527400K .......... .......... .......... .......... .......... 99% 1.21M 4s\n527450K .......... .......... .......... .......... .......... 99% 1.15M 4s\n527500K .......... .......... .......... .......... .......... 99% 1.15M 4s\n527550K .......... .......... .......... .......... .......... 99% 961K 4s\n527600K .......... .......... .......... .......... .......... 99% 1.17M 4s\n527650K .......... .......... .......... .......... .......... 99% 1.15M 4s\n527700K .......... .......... .......... .......... .......... 99% 1.24M 4s\n527750K .......... .......... .......... .......... .......... 99% 1.16M 4s\n527800K .......... .......... .......... .......... .......... 99% 1.23M 4s\n527850K .......... .......... .......... .......... .......... 99% 1.19M 4s\n527900K .......... .......... .......... .......... .......... 99% 1.19M 4s\n527950K .......... .......... .......... .......... .......... 99% 876K 4s\n528000K .......... .......... .......... .......... .......... 99% 1.24M 4s\n528050K .......... .......... .......... .......... .......... 99% 1.15M 4s\n528100K .......... .......... .......... .......... .......... 99% 1.20M 3s\n528150K .......... .......... .......... .......... .......... 99% 1.20M 3s\n528200K .......... .......... .......... .......... .......... 99% 1.22M 3s\n528250K .......... .......... .......... .......... .......... 99% 1.16M 3s\n528300K .......... .......... .......... .......... .......... 99% 1.09M 3s\n528350K .......... .......... .......... .......... .......... 99% 1010K 3s\n528400K .......... .......... .......... .......... .......... 99% 1.16M 3s\n528450K .......... .......... .......... .......... .......... 99% 1.18M 3s\n528500K .......... .......... .......... .......... .......... 99% 1.10M 3s\n528550K .......... .......... .......... .......... .......... 99% 1.30M 3s\n528600K .......... .......... .......... .......... .......... 99% 1.17M 3s\n528650K .......... .......... .......... .......... .......... 99% 1.16M 3s\n528700K .......... .......... .......... .......... .......... 99% 1.26M 3s\n528750K .......... .......... .......... .......... .......... 99% 874K 3s\n528800K .......... .......... .......... .......... .......... 99% 1.21M 3s\n528850K .......... .......... .......... .......... .......... 99% 1.10M 3s\n528900K .......... .......... .......... .......... .......... 99% 1.32M 3s\n528950K .......... .......... .......... .......... .......... 99% 1.18M 3s\n529000K .......... .......... .......... .......... .......... 99% 1.19M 3s\n529050K .......... .......... .......... .......... .......... 99% 1.18M 3s\n529100K .......... .......... .......... .......... .......... 99% 1.15M 3s\n529150K .......... .......... .......... .......... .......... 99% 927K 2s\n529200K .......... .......... .......... .......... .......... 99% 1.16M 2s\n529250K .......... .......... .......... .......... .......... 99% 1.25M 2s\n529300K .......... .......... .......... .......... .......... 99% 1.13M 2s\n529350K .......... .......... .......... .......... .......... 99% 1.25M 2s\n529400K .......... .......... .......... .......... .......... 99% 1.14M 2s\n529450K .......... .......... .......... .......... .......... 99% 1.19M 2s\n529500K .......... .......... .......... .......... .......... 99% 1.22M 2s\n529550K .......... .......... .......... .......... .......... 99% 927K 2s\n529600K .......... .......... .......... .......... .......... 99% 1.18M 2s\n529650K .......... .......... .......... .......... .......... 99% 1.22M 2s\n529700K .......... .......... .......... .......... .......... 99% 1.14M 2s\n529750K .......... .......... .......... .......... .......... 99% 1.22M 2s\n529800K .......... .......... .......... .......... .......... 99% 1.18M 2s\n529850K .......... .......... .......... .......... .......... 99% 1.18M 2s\n529900K .......... .......... .......... .......... .......... 99% 1.19M 2s\n529950K .......... .......... .......... .......... .......... 99% 903K 2s\n530000K .......... .......... .......... .......... .......... 99% 1.16M 2s\n530050K .......... .......... .......... .......... .......... 99% 1.19M 2s\n530100K .......... .......... .......... .......... .......... 99% 1.22M 2s\n530150K .......... .......... .......... .......... .......... 99% 1.18M 2s\n530200K .......... .......... .......... .......... .......... 99% 151K 2s\n530250K .......... .......... .......... .......... .......... 99% 55.2M 1s\n530300K .......... .......... .......... .......... .......... 99% 73.2M 1s\n530350K .......... .......... .......... .......... .......... 99% 1.45M 1s\n530400K .......... .......... .......... .......... .......... 99% 119M 1s\n530450K .......... .......... .......... .......... .......... 99% 125M 1s\n530500K .......... .......... .......... .......... .......... 99% 739K 1s\n530550K .......... .......... .......... .......... .......... 99% 186K 1s\n530600K .......... .......... .......... .......... .......... 99% 80.6M 1s\n530650K .......... .......... .......... .......... .......... 99% 150M 1s\n530700K .......... .......... .......... .......... .......... 99% 76.1M 1s\n530750K .......... .......... .......... .......... .......... 99% 81.4M 1s\n530800K .......... .......... .......... .......... .......... 99% 148M 1s\n530850K .......... .......... .......... .......... .......... 99% 735K 1s\n530900K .......... .......... .......... .......... .......... 99% 1.22M 1s\n530950K .......... .......... .......... .......... .......... 99% 1.18M 1s\n531000K .......... .......... .......... .......... .......... 99% 1.19M 1s\n531050K .......... .......... .......... .......... .......... 99% 1.17M 1s\n531100K .......... .......... .......... .......... .......... 99% 1.22M 1s\n531150K .......... .......... .......... .......... .......... 99% 899K 1s\n531200K .......... .......... .......... .......... .......... 99% 1.21M 1s\n531250K .......... .......... .......... .......... .......... 99% 1.19M 1s\n531300K .......... .......... .......... .......... .......... 99% 1.19M 0s\n531350K .......... .......... .......... .......... .......... 99% 1.19M 0s\n531400K .......... .......... .......... .......... .......... 99% 1.18M 0s\n531450K .......... .......... .......... .......... .......... 99% 1.19M 0s\n531500K .......... .......... .......... .......... .......... 99% 1.17M 0s\n531550K .......... .......... .......... .......... .......... 99% 915K 0s\n531600K .......... .......... .......... .......... .......... 99% 1.22M 0s\n531650K .......... .......... .......... .......... .......... 99% 1.21M 0s\n531700K .......... .......... .......... .......... .......... 99% 1.17M 0s\n531750K .......... .......... .......... .......... .......... 99% 1.19M 0s\n531800K .......... .......... .......... .......... .......... 99% 1.20M 0s\n531850K ......... 100% 2.68M=8m17s\n\n2016-01-14 20:01:25 (1.04 MB/s) - “data.zip” saved [544623675/544623675]\n\nArchive: data.zip\n inflating: data/DimAccount.csv \n inflating: data/DimChannel.csv \n inflating: data/DimCurrency.csv \n inflating: data/DimCustomer.csv \n inflating: data/DimDate.csv \n inflating: data/DimEmployee.csv \n inflating: data/DimEntity.csv \n inflating: data/DimGeography.csv \n inflating: data/DimMachine.csv \n inflating: data/DimOutage.csv \n inflating: data/DimProduct.csv \n inflating: data/DimProductCategory.csv \n inflating: data/DimProductSubcategory.csv \n inflating: data/DimPromotion.csv \n inflating: data/DimSalesTerritory.csv \n inflating: data/DimScenario.csv \n inflating: data/DimStore.csv \n inflating: data/FactExchangeRate.csv \n inflating: data/FactInventory.csv \n inflating: data/FactITMachine.csv \n inflating: data/FactITSLA.csv \n inflating: data/FactOnlineSales.csv \n inflating: data/FactSales.csv \n inflating: data/FactSalesQuota.csv \n inflating: data/FactStrategyPlan.csv \nSalesKey,DateKey,channelKey,StoreKey,ProductKey,PromotionKey,CurrencyKey,UnitCost,UnitPrice,SalesQuantity,ReturnQuantity,ReturnAmount,DiscountQuantity,DiscountAmount,TotalCost,SalesAmount,ETLLoadID,LoadDate,UpdateDate\r\n1,2007-01-02 00:00:00,1,209,956,10,1,91.05,198,8,0,0,1,39.6,728.4,1544.4,1,2010-01-01 00:00:00,2010-01-01 00:00:00\r\n2,2007-02-12 00:00:00,4,308,766,2,1,10.15,19.9,4,0,0,1,0.995,40.6,78.605,1,2010-01-01 00:00:00,2010-01-01 00:00:00\r\n3,2008-01-24 00:00:00,1,156,1175,11,1,209.03,410,9,0,0,3,61.5,1881.27,3628.5,1,2010-01-01 00:00:00,2010-01-01 00:00:00\r\n4,2008-01-13 00:00:00,2,306,1429,10,1,132.9,289,8,0,0,1,57.8,1063.2,2254.2,1,2010-01-01 00:00:00,2010-01-01 00:00:00\r\n5,2008-01-22 00:00:00,2,306,1133,10,1,144.52,436.2,24,0,0,3,261.72,3468.48,10207.08,1,2010-01-01 00:00:00,2010-01-01 00:00:00\r\n6,2007-07-02 00:00:00,3,200,2365,3,1,183.94,399.99,36,0,0,10,399.99,6621.84,13999.65,1,2010-01-01 00:00:00,2010-01-01 00:00:00\r\n7,2007-11-19 00:00:00,4,310,1016,5,1,68.06,148,6,0,0,2,44.4,408.36,843.6,1,2010-01-01 00:00:00,2010-01-01 00:00:00\r\n8,2008-04-10 00:00:00,2,307,138,15,1,229.93,499.99,9,0,0,1,99.998,2069.37,4399.912,1,2010-01-01 00:00:00,2010-01-01 00:00:00\r\n9,2008-07-14 00:00:00,2,199,1731,12,1,33.32,72.45,24,0,0,5,36.225,799.68,1702.575,1,2010-01-01 00:00:00,2010-01-01 00:00:00\r\n"},"dateCreated":"2016-01-13T01:41:26+0000","dateStarted":"2016-01-14T07:53:06+0000","dateFinished":"2016-01-14T08:01:52+0000","status":"FINISHED","progressUpdateIntervalMs":500,"$$hashKey":"object:1707"},{"title":"Review Sql for importing data into Postgres","text":"%sh\nhead -n 16 ~/single-view-demo/contoso-psql.sql","dateUpdated":"2016-01-14T08:09:55+0000","config":{"colWidth":12,"graph":{"mode":"table","height":300,"optionOpen":false,"keys":[],"values":[],"groups":[],"scatter":{}},"editorMode":"ace/mode/sh","title":true,"enabled":true},"settings":{"params":{},"forms":{}},"jobName":"paragraph_1452801970169_992170950","id":"20160114-200610_1870365820","result":{"code":"SUCCESS","type":"TEXT","msg":"CREATE TABLE FactStrategyPlan (\nStrategyPlanKey int ,\nDatekey timestamp , \nEntityKey int , \nScenarioKey int,\nAccountKey int,\nCurrencyKey int,\nProductCategoryKey int,\nAmount float,\nETLLoadID int,\nLoadDate timestamp , \nUpdateDate timestamp \n)\n;\n\\copy FactStrategyPlan FROM '/tmp/data/FactStrategyPlan.csv' DELIMITER ',' CSV HEADER\nselect * from FactStrategyPlan limit 5;\n"},"dateCreated":"2016-01-14T08:06:10+0000","dateStarted":"2016-01-14T08:09:55+0000","dateFinished":"2016-01-14T08:09:56+0000","status":"FINISHED","progressUpdateIntervalMs":500,"$$hashKey":"object:1708"},{"title":"Import data into postgres","text":"%sh\nexport PGPASSWORD=zeppelin\n#run sql to create tables and import data from csv\npsql -U zeppelin -d contoso -h localhost -f ~/single-view-demo/contoso-psql.sql\n#list tables\npsql -U zeppelin -d contoso -h localhost -c \"\\dt\"","dateUpdated":"2016-01-15T04:01:17+0000","config":{"colWidth":12,"graph":{"mode":"table","height":300,"optionOpen":false,"keys":[],"values":[],"groups":[],"scatter":{}},"editorMode":"ace/mode/sh","title":true,"tableHide":true,"enabled":true},"settings":{"params":{},"forms":{}},"jobName":"paragraph_1452693495201_1697768268","id":"20160113-135815_1850996657","result":{"code":"SUCCESS","type":"TEXT","msg":"CREATE TABLE\n strategyplankey | datekey | entitykey | scenariokey | accountkey | currencykey | productcategorykey | amount | etlloadid | loaddate | updatedate \n-----------------+---------------------+-----------+-------------+------------+-------------+--------------------+-------------+-----------+-------------------------+------------\n 1 | 2007-03-01 00:00:00 | 644 | 1 | 4 | 1 | 8 | 221811.3155 | 1 | 2009-08-30 22:13:30.947 | \n 2 | 2007-02-01 00:00:00 | 674 | 1 | 4 | 1 | 2 | 41288.655 | 1 | 2009-08-30 22:13:30.947 | \n 3 | 2007-01-01 00:00:00 | 927 | 1 | 4 | 1 | 1 | 3962.0845 | 1 | 2009-08-30 22:13:30.947 | \n 4 | 2007-01-01 00:00:00 | 840 | 1 | 4 | 1 | 2 | 78481.346 | 1 | 2009-08-30 22:13:30.947 | \n 5 | 2007-01-01 00:00:00 | 666 | 1 | 4 | 1 | 4 | 134826.4105 | 1 | 2009-08-30 22:13:30.947 | \n(5 rows)\n\nCREATE TABLE\n salesquotakey | channelkey | storekey | productkey | datekey | currencykey | scenariokey | salesquantityquota | salesamountquota | grossmarginquota | etlloadid | loaddate | updatedate \n---------------+------------+----------+------------+---------------------+-------------+-------------+--------------------+------------------+------------------+-----------+-------------------------+-------------------------\n 1 | 1 | 169 | 2077 | 2007-02-01 00:00:00 | 1 | 1 | 8 | 769.923 | 162.103 | 1 | 2010-01-19 01:29:13.893 | 2010-01-19 01:29:13.893\n 2 | 1 | 232 | 1122 | 2007-01-01 00:00:00 | 1 | 1 | 8 | 2656 | 1434.56 | 1 | 2010-01-19 01:29:13.893 | 2010-01-19 01:29:13.893\n 3 | 1 | 128 | 1270 | 2008-11-01 00:00:00 | 1 | 1 | 13 | 88.96 | 42.94 | 1 | 2010-01-19 01:29:13.893 | 2010-01-19 01:29:13.893\n 4 | 1 | 190 | 2156 | 2008-05-01 00:00:00 | 1 | 1 | 10 | 1490 | 730.4 | 1 | 2010-01-19 01:29:13.893 | 2010-01-19 01:29:13.893\n 5 | 3 | 200 | 2023 | 2009-12-01 00:00:00 | 1 | 1 | 104 | 10198.98 | 4897.06 | 1 | 2010-01-19 01:29:13.893 | 2010-01-19 01:29:13.893\n(5 rows)\n\nCREATE TABLE\n saleskey | datekey | channelkey | storekey | productkey | promotionkey | currencykey | unitcost | unitprice | salesquantity | returnquantity | returnamount | discountquantity | discountamount | totalcost | salesamount | etlloadid | loaddate | updatedate \n----------+---------------------+------------+----------+------------+--------------+-------------+----------+-----------+---------------+----------------+--------------+------------------+----------------+-----------+-------------+-----------+---------------------+---------------------\n 1 | 2007-01-02 00:00:00 | 1 | 209 | 956 | 10 | 1 | 91.05 | 198 | 8 | 0 | 0 | 1 | 39.6 | 728.4 | 1544.4 | 1 | 2010-01-01 00:00:00 | 2010-01-01 00:00:00\n 2 | 2007-02-12 00:00:00 | 4 | 308 | 766 | 2 | 1 | 10.15 | 19.9 | 4 | 0 | 0 | 1 | 0.995 | 40.6 | 78.605 | 1 | 2010-01-01 00:00:00 | 2010-01-01 00:00:00\n 3 | 2008-01-24 00:00:00 | 1 | 156 | 1175 | 11 | 1 | 209.03 | 410 | 9 | 0 | 0 | 3 | 61.5 | 1881.27 | 3628.5 | 1 | 2010-01-01 00:00:00 | 2010-01-01 00:00:00\n 4 | 2008-01-13 00:00:00 | 2 | 306 | 1429 | 10 | 1 | 132.9 | 289 | 8 | 0 | 0 | 1 | 57.8 | 1063.2 | 2254.2 | 1 | 2010-01-01 00:00:00 | 2010-01-01 00:00:00\n 5 | 2008-01-22 00:00:00 | 2 | 306 | 1133 | 10 | 1 | 144.52 | 436.2 | 24 | 0 | 0 | 3 | 261.72 | 3468.48 | 10207.08 | 1 | 2010-01-01 00:00:00 | 2010-01-01 00:00:00\n(5 rows)\n\nCREATE TABLE\n onlinesaleskey | datekey | storekey | productkey | promotionkey | currencykey | customerkey | salesordernumber | salesorderlinenumber | salesquantity | salesamount | returnquantity | returnamount | discountquantity | discountamount | totalcost | unitcost | unitprice | etlloadid | loaddate | updatedate \n----------------+---------------------+----------+------------+--------------+-------------+-------------+------------------+----------------------+---------------+-------------+----------------+--------------+------------------+----------------+-----------+----------+-----------+-----------+----------+------------\n 19560484 | 2007-01-01 00:00:00 | 306 | 782 | 10 | 1 | 333 | 20070101311332 | 1 | 1 | 10.36 | 0 | 0 | 1 | 2.59 | 6.6 | 6.6 | 12.95 | | | \n 19560485 | 2007-01-01 00:00:00 | 306 | 782 | 10 | 1 | 334 | 20070101311333 | 1 | 1 | 10.36 | 0 | 0 | 1 | 2.59 | 6.6 | 6.6 | 12.95 | | | \n 19560486 | 2007-01-01 00:00:00 | 306 | 782 | 10 | 1 | 335 | 20070101311334 | 1 | 1 | 10.36 | 0 | 0 | 1 | 2.59 | 6.6 | 6.6 | 12.95 | | | \n 19560487 | 2007-01-01 00:00:00 | 306 | 782 | 10 | 1 | 336 | 20070101311335 | 1 | 1 | 10.36 | 0 | 0 | 1 | 2.59 | 6.6 | 6.6 | 12.95 | | | \n 19560488 | 2007-01-01 00:00:00 | 306 | 782 | 10 | 1 | 337 | 20070101311336 | 1 | 1 | 10.36 | 0 | 0 | 1 | 2.59 | 6.6 | 6.6 | 12.95 | | | \n(5 rows)\n\nCREATE TABLE\n itslakey | datekey | storekey | machinekey | outagekey | outagestarttime | outageendtime | downtime | etlloadid | loaddate | updatedate \n----------+---------------------+----------+------------+-----------+---------------------+---------------------+----------+-----------+---------------------+---------------------\n 1 | 2007-05-27 00:00:00 | 18 | 177 | 423 | 2007-05-27 03:23:00 | 2007-05-27 03:27:00 | 4 | 1 | 2007-05-27 00:00:00 | 2007-05-27 00:00:00\n 2 | 2007-05-04 00:00:00 | 168 | 1348 | 522 | 2007-05-04 17:39:00 | 2007-05-04 18:04:00 | 25 | 1 | 2007-05-04 00:00:00 | 2007-05-04 00:00:00\n 3 | 2007-09-29 00:00:00 | 143 | 1103 | 577 | 2007-09-29 03:41:00 | 2007-09-29 17:30:00 | 829 | 1 | 2007-09-29 00:00:00 | 2007-09-29 00:00:00\n 4 | 2007-05-13 00:00:00 | 16 | 160 | 501 | 2007-05-13 14:07:00 | 2007-05-13 14:58:00 | 51 | 1 | 2007-05-13 00:00:00 | 2007-05-13 00:00:00\n 5 | 2007-06-06 00:00:00 | 116 | 827 | 463 | 2007-06-06 18:50:00 | 2007-06-06 19:15:00 | 25 | 1 | 2007-06-06 00:00:00 | 2007-06-06 00:00:00\n(5 rows)\n\nCREATE TABLE\n itmachinekey | machinekey | datekey | costamount | costtype | etlloadid | loaddate | updatedate \n--------------+------------+---------------------+------------+-------------------------+-----------+-------------------------+-------------------------\n 1 | 1 | 2007-01-01 00:00:00 | 500 | Annual Maintenance Cost | 1 | 2009-08-24 23:59:22.373 | 2009-08-24 23:59:22.373\n 2 | 1 | 2008-01-01 00:00:00 | 700 | Annual Maintenance Cost | 1 | 2009-08-24 23:59:22.373 | 2009-08-24 23:59:22.373\n 3 | 1 | 2009-01-01 00:00:00 | 1200 | Annual Maintenance Cost | 1 | 2009-08-24 23:59:22.373 | 2009-08-24 23:59:22.373\n 4 | 2 | 2007-01-01 00:00:00 | 500 | Annual Maintenance Cost | 1 | 2009-08-24 23:59:22.373 | 2009-08-24 23:59:22.373\n 5 | 2 | 2008-01-01 00:00:00 | 700 | Annual Maintenance Cost | 1 | 2009-08-24 23:59:22.373 | 2009-08-24 23:59:22.373\n(5 rows)\n\nCREATE TABLE\n inventorykey | datekey | storekey | productkey | currencykey | onhandquantity | onorderquantity | safetystockquantity | unitcost | daysinstock | mindayinstock | maxdayinstock | aging | etlloadid | loaddate | updatedate \n--------------+---------------------+----------+------------+-------------+----------------+-----------------+---------------------+----------+-------------+---------------+---------------+-------+-----------+---------------------+---------------------\n 1 | 2008-02-09 00:00:00 | 308 | 2086 | 1 | 16 | 3 | 9 | 403.53 | 12 | 26 | 109 | 7 | 1 | 2010-01-01 00:00:00 | 2010-01-01 00:00:00\n 2 | 2007-06-09 00:00:00 | 239 | 643 | 1 | 21 | 1 | 9 | 77.72 | 24 | 21 | 95 | 7 | 1 | 2010-01-01 00:00:00 | 2010-01-01 00:00:00\n 3 | 2009-01-31 00:00:00 | 205 | 18 | 1 | 17 | 1 | 6 | 50.56 | 48 | 57 | 94 | 7 | 1 | 2010-01-01 00:00:00 | 2010-01-01 00:00:00\n 4 | 2007-06-02 00:00:00 | 199 | 1587 | 1 | 21 | 1 | 90 | 8.27 | 59 | 15 | 118 | 7 | 1 | 2010-01-01 00:00:00 | 2010-01-01 00:00:00\n 5 | 2009-11-21 00:00:00 | 29 | 2269 | 1 | 45 | 13 | 12 | 15.29 | 24 | 54 | 60 | 7 | 1 | 2010-01-01 00:00:00 | 2010-01-01 00:00:00\n(5 rows)\n\nCREATE TABLE\n exchangeratekey | currencykey | datekey | averagerate | endofdayrate | etlloadid | loaddate | updatedate \n-----------------+-------------+---------------------+-------------+--------------+-----------+---------------------+---------------------\n 1 | 2 | 2007-01-01 00:00:00 | 363.7 | 359.4 | 1 | 2009-07-01 00:00:00 | 2009-07-01 00:00:00\n 2 | 2 | 2007-02-01 00:00:00 | 356 | 353.6 | 1 | 2009-07-01 00:00:00 | 2009-07-01 00:00:00\n 3 | 2 | 2007-03-01 00:00:00 | 358.6 | 362.1 | 1 | 2009-07-01 00:00:00 | 2009-07-01 00:00:00\n 4 | 2 | 2007-04-01 00:00:00 | 363.3 | 357 | 1 | 2009-07-01 00:00:00 | 2009-07-01 00:00:00\n 5 | 2 | 2007-05-01 00:00:00 | 353.8 | 347.9 | 1 | 2009-07-01 00:00:00 | 2009-07-01 00:00:00\n(5 rows)\n\nCREATE TABLE\n storekey | geographykey | storemanager | storetype | storename | storedescription | status | opendate | closedate | entitykey | zipcode | zipcodeextension | storephone | storefax | closereason | employeecount | sellingareasize | lastremodeldate | etlloadid | somedate1 | somedate2 | loaddate | updatedate \n----------+--------------+--------------+-----------+----------------------------+----------------------------+--------+---------------------+-----------+-----------+---------+------------------+--------------+--------------+-------------+---------------+-----------------+---------------------+-----------+---------------------+---------------------+---------------------+---------------------\n 1 | 693 | 35 | Store | Contoso Seattle No.1 Store | Contoso Seattle No.1 Store | On | 2004-04-12 00:00:00 | | 635 | 97001 | 97001 | 320-555-0195 | 320-555-0195 | | 17 | 462 | 2009-06-16 00:00:00 | 1 | 2009-06-05 00:00:00 | 2009-06-05 00:00:00 | 2009-06-05 00:00:00 | 2009-06-05 00:00:00\n 2 | 693 | 35 | Store | Contoso Seattle No.2 Store | Contoso Seattle No.2 Store | On | 2004-02-14 00:00:00 | | 636 | 97001 | 97002 | 150-555-0189 | 150-555-0189 | | 25 | 700 | 2009-06-17 00:00:00 | 1 | 2009-06-05 00:00:00 | 2009-06-05 00:00:00 | 2009-06-05 00:00:00 | 2009-06-05 00:00:00\n 3 | 856 | 36 | Store | Contoso Kennewick Store | Contoso Kennewick Store | On | 2004-02-12 00:00:00 | | 934 | 97001 | 97003 | 212-555-0187 | 212-555-0187 | | 26 | 680 | 2009-06-18 00:00:00 | 1 | 2008-11-21 00:00:00 | 2008-11-21 00:00:00 | 2008-11-21 00:00:00 | 2008-11-21 00:00:00\n 4 | 424 | 37 | Store | Contoso Bellevue Store | Contoso Bellevue Store | On | 2004-03-01 00:00:00 | | 638 | 97001 | 97004 | 612-555-0100 | 612-555-0100 | | 19 | 455 | 2009-06-16 00:00:00 | 1 | 2009-07-01 00:00:00 | 2009-07-01 00:00:00 | 2009-07-01 00:00:00 | 2009-07-01 00:00:00\n 5 | 677 | 38 | Store | Contoso Redmond Store | Contoso Redmond Store | On | 2004-04-02 00:00:00 | | 639 | 97001 | 97005 | 612-555-0100 | 612-555-0100 | | 33 | 560 | 2009-06-17 00:00:00 | 1 | 2009-06-13 00:00:00 | 2009-06-13 00:00:00 | 2009-06-13 00:00:00 | 2009-06-13 00:00:00\n(5 rows)\n\nCREATE TABLE\n salesterritorykey | geographykey | salesterritorylabel | salesterritoryname | salesterritoryregion | salesterritorycountry | salesterritorygroup | salesterritorylevel | salesterritorymanager | startdate | enddate | status | etlloadid | loaddate | updatedate \n-------------------+--------------+---------------------+--------------------+----------------------+-----------------------+---------------------+---------------------+-----------------------+-------------------------+---------+---------+-----------+---------------------+---------------------\n 1 | 693 | 010112001 | Seattle | Washington | United States | North America | 4 | 35 | 2009-09-29 02:48:10.587 | | Current | 1 | 2009-08-01 00:00:00 | 2009-08-01 00:00:00\n 2 | 856 | 010112002 | Kennewick | Washington | United States | North America | 4 | 36 | 2009-09-29 02:48:10.587 | | Current | 1 | 2009-08-01 00:00:00 | 2009-08-01 00:00:00\n 3 | 424 | 010112003 | Bellevue | Washington | United States | North America | 4 | 37 | 2009-09-29 02:48:10.587 | | Current | 1 | 2009-08-01 00:00:00 | 2009-08-01 00:00:00\n 4 | 677 | 010112004 | Redmond | Washington | United States | North America | 4 | 38 | 2009-09-29 02:48:10.587 | | Current | 1 | 2009-08-01 00:00:00 | 2009-08-01 00:00:00\n 5 | 575 | 010112005 | Yakima | Washington | United States | North America | 4 | 39 | 2009-09-29 02:48:10.587 | | Current | 1 | 2009-08-01 00:00:00 | 2009-08-01 00:00:00\n(5 rows)\n\n List of relations\n Schema | Name | Type | Owner \n--------+-------------------+-------+----------\n public | dimsalesterritory | table | zeppelin\n public | dimstore | table | zeppelin\n public | factexchangerate | table | zeppelin\n public | factinventory | table | zeppelin\n public | factitmachine | table | zeppelin\n public | factitsla | table | zeppelin\n public | factonlinesales | table | zeppelin\n public | factsales | table | zeppelin\n public | factsalesquota | table | zeppelin\n public | factstrategyplan | table | zeppelin\n(10 rows)\n\n"},"dateCreated":"2016-01-13T01:58:15+0000","dateStarted":"2016-01-14T08:05:03+0000","dateFinished":"2016-01-14T08:08:17+0000","status":"FINISHED","progressUpdateIntervalMs":500,"$$hashKey":"object:1709"},{"text":"%md\n#### 2. EDW Optimization\n\nDemonstrate how to bulk import retail data from EDW/RDBMS into Hive and then incrementally keep the Hive tables periodically updated","dateUpdated":"2016-01-15T04:05:17+0000","config":{"colWidth":12,"graph":{"mode":"table","height":300,"optionOpen":false,"keys":[],"values":[],"groups":[],"scatter":{}},"editorMode":"ace/mode/scala","editorHide":true,"enabled":true},"settings":{"params":{},"forms":{}},"jobName":"paragraph_1452830648572_-1493215818","id":"20160115-040408_300588789","result":{"code":"SUCCESS","type":"HTML","msg":"

2. EDW Optimization

\n

Demonstrate how to bulk import retail data from EDW/RDBMS into Hive and then incrementally keep the Hive tables periodically updated

\n"},"dateCreated":"2016-01-15T04:04:08+0000","dateStarted":"2016-01-15T04:05:15+0000","dateFinished":"2016-01-15T04:05:15+0000","status":"FINISHED","progressUpdateIntervalMs":500,"$$hashKey":"object:1710"},{"title":"Check access to Postgres tables from sqoop","text":"%sh\nsqoop list-tables --connect jdbc:postgresql://localhost:5432/contoso --username zeppelin --password zeppelin -- schema contoso ","dateUpdated":"2016-01-14T08:12:45+0000","config":{"colWidth":12,"graph":{"mode":"table","height":300,"optionOpen":false,"keys":[],"values":[],"groups":[],"scatter":{}},"editorMode":"ace/mode/sh","title":true,"enabled":true},"settings":{"params":{},"forms":{}},"jobName":"paragraph_1452694284511_-957637824","id":"20160113-141124_1982574845","result":{"code":"SUCCESS","type":"TEXT","msg":"Warning: /usr/hdp/2.3.2.0-2950/accumulo does not exist! Accumulo imports will fail.\nPlease set $ACCUMULO_HOME to the root of your Accumulo installation.\n16/01/14 20:12:48 INFO sqoop.Sqoop: Running Sqoop version: 1.4.6.2.3.2.0-2950\n16/01/14 20:12:48 WARN tool.BaseSqoopTool: Setting your password on the command-line is insecure. Consider using -P instead.\n16/01/14 20:12:48 INFO manager.SqlManager: Using default fetchSize of 1000\nSLF4J: Class path contains multiple SLF4J bindings.\nSLF4J: Found binding in [jar:file:/usr/hdp/2.3.2.0-2950/hadoop/lib/slf4j-log4j12-1.7.10.jar!/org/slf4j/impl/StaticLoggerBinder.class]\nSLF4J: Found binding in [jar:file:/usr/hdp/2.3.2.0-2950/zookeeper/lib/slf4j-log4j12-1.6.1.jar!/org/slf4j/impl/StaticLoggerBinder.class]\nSLF4J: See http://www.slf4j.org/codes.html#multiple_bindings for an explanation.\nSLF4J: Actual binding is of type [org.slf4j.impl.Log4jLoggerFactory]\nfactstrategyplan\nfactsalesquota\nfactsales\nfactonlinesales\nfactitsla\nfactitmachine\nfactinventory\nfactexchangerate\ndimstore\ndimsalesterritory\n"},"dateCreated":"2016-01-13T02:11:24+0000","dateStarted":"2016-01-14T08:12:45+0000","dateFinished":"2016-01-14T08:12:48+0000","status":"FINISHED","progressUpdateIntervalMs":500,"$$hashKey":"object:1711"},{"title":"Make sure hive is started and Up","text":"%sh\nexport SERVICE=HIVE\nexport PASSWORD=admin\nexport AMBARI_HOST=localhost\nexport CLUSTER=Sandbox\n\ncurl -u admin:$PASSWORD -i -H 'X-Requested-By: ambari' -X PUT -d '{\"RequestInfo\": {\"context\" :\"Start Hive via REST\"}, \"Body\": {\"ServiceInfo\": {\"state\": \"STARTED\"}}}' http://$AMBARI_HOST:8080/api/v1/clusters/$CLUSTER/services/$SERVICE","dateUpdated":"2016-01-14T08:12:53+0000","config":{"colWidth":12,"graph":{"mode":"table","height":300,"optionOpen":false,"keys":[],"values":[],"groups":[],"scatter":{}},"editorMode":"ace/mode/sh","title":true,"enabled":true},"settings":{"params":{},"forms":{}},"jobName":"paragraph_1452695067865_1445807000","id":"20160113-142427_1944290859","result":{"code":"SUCCESS","type":"TEXT","msg":" % Total % Received % Xferd Average Speed Time Time Time Current\n Dload Upload Total Spent Left Speed\n\r 0 0 0 0 0 98 0 39247 --:--:-- --:--:-- --:--:-- 39247\r235 137 137 137 0 98 311 222 --:--:-- --:--:-- --:--:-- 89\nHTTP/1.1 202 Accepted\r\nUser: admin\r\nSet-Cookie: AMBARISESSIONID=u9ljzeyu9p0of9xrlaty3ne0;Path=/;HttpOnly\r\nExpires: Thu, 01 Jan 1970 00:00:00 GMT\r\nContent-Type: text/plain\r\nVary: Accept-Encoding, User-Agent\r\nContent-Length: 137\r\nServer: Jetty(8.1.17.v20150415)\r\n\r\n{\n \"href\" : \"http://localhost:8080/api/v1/clusters/Sandbox/requests/45\",\n \"Requests\" : {\n \"id\" : 45,\n \"status\" : \"Accepted\"\n }\n}"},"dateCreated":"2016-01-13T02:24:27+0000","dateStarted":"2016-01-14T08:12:53+0000","dateFinished":"2016-01-14T08:12:55+0000","status":"FINISHED","progressUpdateIntervalMs":500,"$$hashKey":"object:1712"},{"title":"bulk load Tables from Psql into Hive","text":"%sh\nsqoop import-all-tables --username zeppelin --password zeppelin --connect jdbc:postgresql://localhost:5432/contoso --hive-import --direct","dateUpdated":"2016-01-14T10:11:48+0000","config":{"colWidth":12,"graph":{"mode":"table","height":300,"optionOpen":false,"keys":[],"values":[],"groups":[],"scatter":{}},"editorMode":"ace/mode/sh","title":true,"editorHide":false,"tableHide":true,"enabled":true},"settings":{"params":{},"forms":{}},"jobName":"paragraph_1452694458755_-702905048","id":"20160113-141418_435147104","result":{"code":"SUCCESS","type":"TEXT","msg":"Warning: /usr/hdp/2.3.2.0-2950/accumulo does not exist! Accumulo imports will fail.\nPlease set $ACCUMULO_HOME to the root of your Accumulo installation.\n16/01/14 20:14:23 INFO sqoop.Sqoop: Running Sqoop version: 1.4.6.2.3.2.0-2950\n16/01/14 20:14:23 WARN tool.BaseSqoopTool: Setting your password on the command-line is insecure. Consider using -P instead.\n16/01/14 20:14:23 INFO tool.BaseSqoopTool: Using Hive-specific delimiters for output. You can override\n16/01/14 20:14:23 INFO tool.BaseSqoopTool: delimiters with --fields-terminated-by, etc.\n16/01/14 20:14:24 INFO manager.SqlManager: Using default fetchSize of 1000\nSLF4J: Class path contains multiple SLF4J bindings.\nSLF4J: Found binding in [jar:file:/usr/hdp/2.3.2.0-2950/hadoop/lib/slf4j-log4j12-1.7.10.jar!/org/slf4j/impl/StaticLoggerBinder.class]\nSLF4J: Found binding in [jar:file:/usr/hdp/2.3.2.0-2950/zookeeper/lib/slf4j-log4j12-1.6.1.jar!/org/slf4j/impl/StaticLoggerBinder.class]\nSLF4J: See http://www.slf4j.org/codes.html#multiple_bindings for an explanation.\nSLF4J: Actual binding is of type [org.slf4j.impl.Log4jLoggerFactory]\n16/01/14 20:14:24 INFO tool.CodeGenTool: Beginning code generation\n16/01/14 20:14:24 INFO manager.SqlManager: Executing SQL statement: SELECT t.* FROM \"factstrategyplan\" AS t LIMIT 1\n16/01/14 20:14:24 INFO orm.CompilationManager: HADOOP_MAPRED_HOME is /usr/hdp/2.3.2.0-2950/hadoop-mapreduce\nNote: /tmp/sqoop-zeppelin/compile/ce337b759b5886e936a3b8fd3215b457/factstrategyplan.java uses or overrides a deprecated API.\nNote: Recompile with -Xlint:deprecation for details.\n16/01/14 20:14:26 INFO orm.CompilationManager: Writing jar file: /tmp/sqoop-zeppelin/compile/ce337b759b5886e936a3b8fd3215b457/factstrategyplan.jar\n16/01/14 20:14:26 INFO manager.DirectPostgresqlManager: Beginning psql fast path import\n16/01/14 20:14:26 INFO manager.SqlManager: Executing SQL statement: SELECT t.* FROM \"factstrategyplan\" AS t LIMIT 1\n16/01/14 20:14:26 INFO manager.DirectPostgresqlManager: Copy command is COPY (SELECT \"strategyplankey\", \"datekey\", \"entitykey\", \"scenariokey\", \"accountkey\", \"currencykey\", \"productcategorykey\", \"amount\", \"etlloadid\", \"loaddate\", \"updatedate\" FROM \"factstrategyplan\" WHERE 1=1) TO STDOUT WITH DELIMITER E'\\1' CSV ;\n16/01/14 20:14:26 INFO manager.DirectPostgresqlManager: Performing import of table factstrategyplan from database contoso\n16/01/14 20:14:43 INFO manager.DirectPostgresqlManager: Transfer loop complete.\n16/01/14 20:14:43 INFO manager.DirectPostgresqlManager: Transferred 233.7275 MB in 15.6707 seconds (14.9149 MB/sec)\n16/01/14 20:14:43 INFO manager.SqlManager: Executing SQL statement: SELECT t.* FROM \"factstrategyplan\" AS t LIMIT 1\n16/01/14 20:14:43 WARN hive.TableDefWriter: Column datekey had to be cast to a less precise type in Hive\n16/01/14 20:14:43 WARN hive.TableDefWriter: Column loaddate had to be cast to a less precise type in Hive\n16/01/14 20:14:43 WARN hive.TableDefWriter: Column updatedate had to be cast to a less precise type in Hive\n16/01/14 20:14:43 INFO hive.HiveImport: Loading uploaded data into Hive\n\nLogging initialized using configuration in jar:file:/usr/hdp/2.3.2.0-2950/hive/lib/hive-common-1.2.1.2.3.2.0-2950.jar!/hive-log4j.properties\nOK\nTime taken: 22.942 seconds\nLoading data to table default.factstrategyplan\nchgrp: changing ownership of 'hdfs://sandbox.hortonworks.com:8020/apps/hive/warehouse/factstrategyplan/part-m-00000': User does not belong to hdfs\nTable default.factstrategyplan stats: [numFiles=1, totalSize=245081057]\nOK\nTime taken: 3.801 seconds\nNote: /tmp/sqoop-zeppelin/compile/ce337b759b5886e936a3b8fd3215b457/factsalesquota.java uses or overrides a deprecated API.\nNote: Recompile with -Xlint:deprecation for details.\n\nLogging initialized using configuration in jar:file:/usr/hdp/2.3.2.0-2950/hive/lib/hive-common-1.2.1.2.3.2.0-2950.jar!/hive-log4j.properties\nOK\nTime taken: 7.586 seconds\nLoading data to table default.factsalesquota\nchgrp: changing ownership of 'hdfs://sandbox.hortonworks.com:8020/apps/hive/warehouse/factsalesquota/part-m-00000': User does not belong to hdfs\nTable default.factsalesquota stats: [numFiles=1, totalSize=837357737]\nOK\nTime taken: 2.545 seconds\nNote: /tmp/sqoop-zeppelin/compile/ce337b759b5886e936a3b8fd3215b457/factsales.java uses or overrides a deprecated API.\nNote: Recompile with -Xlint:deprecation for details.\n\nLogging initialized using configuration in jar:file:/usr/hdp/2.3.2.0-2950/hive/lib/hive-common-1.2.1.2.3.2.0-2950.jar!/hive-log4j.properties\nOK\nTime taken: 7.485 seconds\nLoading data to table default.factsales\nchgrp: changing ownership of 'hdfs://sandbox.hortonworks.com:8020/apps/hive/warehouse/factsales/part-m-00000': User does not belong to hdfs\nTable default.factsales stats: [numFiles=1, totalSize=416567244]\nOK\nTime taken: 2.348 seconds\nNote: /tmp/sqoop-zeppelin/compile/ce337b759b5886e936a3b8fd3215b457/factonlinesales.java uses or overrides a deprecated API.\nNote: Recompile with -Xlint:deprecation for details.\n\nLogging initialized using configuration in jar:file:/usr/hdp/2.3.2.0-2950/hive/lib/hive-common-1.2.1.2.3.2.0-2950.jar!/hive-log4j.properties\nOK\nTime taken: 7.692 seconds\nLoading data to table default.factonlinesales\nchgrp: changing ownership of 'hdfs://sandbox.hortonworks.com:8020/apps/hive/warehouse/factonlinesales/part-m-00000': User does not belong to hdfs\nTable default.factonlinesales stats: [numFiles=1, totalSize=1329211372]\nOK\nTime taken: 2.249 seconds\nNote: /tmp/sqoop-zeppelin/compile/ce337b759b5886e936a3b8fd3215b457/factitsla.java uses or overrides a deprecated API.\nNote: Recompile with -Xlint:deprecation for details.\n\nLogging initialized using configuration in jar:file:/usr/hdp/2.3.2.0-2950/hive/lib/hive-common-1.2.1.2.3.2.0-2950.jar!/hive-log4j.properties\nOK\nTime taken: 7.315 seconds\nLoading data to table default.factitsla\nchgrp: changing ownership of 'hdfs://sandbox.hortonworks.com:8020/apps/hive/warehouse/factitsla/part-m-00000': User does not belong to hdfs\nTable default.factitsla stats: [numFiles=1, totalSize=601437]\nOK\nTime taken: 2.494 seconds\nNote: /tmp/sqoop-zeppelin/compile/ce337b759b5886e936a3b8fd3215b457/factitmachine.java uses or overrides a deprecated API.\nNote: Recompile with -Xlint:deprecation for details.\n\nLogging initialized using configuration in jar:file:/usr/hdp/2.3.2.0-2950/hive/lib/hive-common-1.2.1.2.3.2.0-2950.jar!/hive-log4j.properties\nOK\nTime taken: 6.688 seconds\nLoading data to table default.factitmachine\nchgrp: changing ownership of 'hdfs://sandbox.hortonworks.com:8020/apps/hive/warehouse/factitmachine/part-m-00000': User does not belong to hdfs\nTable default.factitmachine stats: [numFiles=1, totalSize=2554017]\nOK\nTime taken: 2.187 seconds\nNote: /tmp/sqoop-zeppelin/compile/ce337b759b5886e936a3b8fd3215b457/factinventory.java uses or overrides a deprecated API.\nNote: Recompile with -Xlint:deprecation for details.\n\nLogging initialized using configuration in jar:file:/usr/hdp/2.3.2.0-2950/hive/lib/hive-common-1.2.1.2.3.2.0-2950.jar!/hive-log4j.properties\nOK\nTime taken: 7.35 seconds\nLoading data to table default.factinventory\nchgrp: changing ownership of 'hdfs://sandbox.hortonworks.com:8020/apps/hive/warehouse/factinventory/part-m-00000': User does not belong to hdfs\nTable default.factinventory stats: [numFiles=1, totalSize=837566319]\nOK\nTime taken: 2.557 seconds\nNote: /tmp/sqoop-zeppelin/compile/ce337b759b5886e936a3b8fd3215b457/factexchangerate.java uses or overrides a deprecated API.\nNote: Recompile with -Xlint:deprecation for details.\n\nLogging initialized using configuration in jar:file:/usr/hdp/2.3.2.0-2950/hive/lib/hive-common-1.2.1.2.3.2.0-2950.jar!/hive-log4j.properties\nOK\nTime taken: 6.813 seconds\nLoading data to table default.factexchangerate\nchgrp: changing ownership of 'hdfs://sandbox.hortonworks.com:8020/apps/hive/warehouse/factexchangerate/part-m-00000': User does not belong to hdfs\nTable default.factexchangerate stats: [numFiles=1, totalSize=64207]\nOK\nTime taken: 3.282 seconds\nNote: /tmp/sqoop-zeppelin/compile/ce337b759b5886e936a3b8fd3215b457/dimstore.java uses or overrides a deprecated API.\nNote: Recompile with -Xlint:deprecation for details.\n\nLogging initialized using configuration in jar:file:/usr/hdp/2.3.2.0-2950/hive/lib/hive-common-1.2.1.2.3.2.0-2950.jar!/hive-log4j.properties\nOK\nTime taken: 7.574 seconds\nLoading data to table default.dimstore\nchgrp: changing ownership of 'hdfs://sandbox.hortonworks.com:8020/apps/hive/warehouse/dimstore/part-m-00000': User does not belong to hdfs\nTable default.dimstore stats: [numFiles=1, totalSize=74041]\nOK\nTime taken: 2.729 seconds\nNote: /tmp/sqoop-zeppelin/compile/ce337b759b5886e936a3b8fd3215b457/dimsalesterritory.java uses or overrides a deprecated API.\nNote: Recompile with -Xlint:deprecation for details.\n\nLogging initialized using configuration in jar:file:/usr/hdp/2.3.2.0-2950/hive/lib/hive-common-1.2.1.2.3.2.0-2950.jar!/hive-log4j.properties\nOK\nTime taken: 6.971 seconds\nLoading data to table default.dimsalesterritory\nchgrp: changing ownership of 'hdfs://sandbox.hortonworks.com:8020/apps/hive/warehouse/dimsalesterritory/part-m-00000': User does not belong to hdfs\nTable default.dimsalesterritory stats: [numFiles=1, totalSize=37551]\nOK\nTime taken: 2.436 seconds\n"},"dateCreated":"2016-01-13T02:14:18+0000","dateStarted":"2016-01-14T08:14:21+0000","dateFinished":"2016-01-14T08:22:34+0000","status":"FINISHED","progressUpdateIntervalMs":500,"$$hashKey":"object:1713"},{"text":"%md\nThe above may run for a 5-10 minutes, but you can track the jobs using the Resource Manager UI e.g. [http://sandbox.hortonworks.com:8088/cluster](http://sandbox.hortonworks.com:8088/cluster)","dateUpdated":"2016-01-13T02:38:31+0000","config":{"colWidth":12,"graph":{"mode":"table","height":300,"optionOpen":false,"keys":[],"values":[],"groups":[],"scatter":{}},"editorMode":"ace/mode/markdown","editorHide":true,"enabled":true},"settings":{"params":{},"forms":{}},"jobName":"paragraph_1452694720308_80426744","id":"20160113-141840_578470232","result":{"code":"SUCCESS","type":"HTML","msg":"

The above may run for a 5-10 minutes, but you can track the jobs using the Resource Manager UI e.g. http://sandbox.hortonworks.com:8088/cluster

\n"},"dateCreated":"2016-01-13T02:18:40+0000","dateStarted":"2016-01-13T02:38:28+0000","dateFinished":"2016-01-13T02:38:28+0000","status":"FINISHED","progressUpdateIntervalMs":500,"$$hashKey":"object:1714"},{"title":"Confirm Staging tables created in hive (text format)","text":"%hive\nshow tables","dateUpdated":"2016-01-14T08:22:47+0000","config":{"colWidth":12,"graph":{"mode":"table","height":300,"optionOpen":false,"keys":[{"name":"tab_name","index":0,"aggr":"sum"}],"values":[],"groups":[],"scatter":{"xAxis":{"name":"tab_name","index":0,"aggr":"sum"}}},"editorMode":"ace/mode/scala","title":true,"enabled":true},"settings":{"params":{},"forms":{}},"jobName":"paragraph_1452695332731_-1432713536","id":"20160113-142852_416527267","result":{"code":"SUCCESS","type":"TABLE","msg":"tab_name\ndimsalesterritory\t\ndimstore\t\nfactexchangerate\t\nfactinventory\t\nfactitmachine\t\nfactitsla\t\nfactonlinesales\t\nfactsales\t\nfactsalesquota\t\nfactstrategyplan\t\nsample_07\t\nsample_08\t\n","comment":"","msgTable":[[{"value":"dimsalesterritory"},{"value":""}],[{"value":"dimstore"},{"value":""}],[{"value":"factexchangerate"},{"value":""}],[{"value":"factinventory"},{"value":""}],[{"value":"factitmachine"},{"value":""}],[{"value":"factitsla"},{"value":""}],[{"value":"factonlinesales"},{"value":""}],[{"value":"factsales"},{"value":""}],[{"value":"factsalesquota"},{"value":""}],[{"value":"factstrategyplan"},{"value":""}],[{"value":"sample_07"},{"value":""}],[{"value":"sample_08"},{"value":""}]],"columnNames":[{"name":"tab_name","index":0,"aggr":"sum"}],"rows":[["dimsalesterritory",""],["dimstore",""],["factexchangerate",""],["factinventory",""],["factitmachine",""],["factitsla",""],["factonlinesales",""],["factsales",""],["factsalesquota",""],["factstrategyplan",""],["sample_07",""],["sample_08",""]]},"dateCreated":"2016-01-13T02:28:52+0000","dateStarted":"2016-01-14T08:22:47+0000","dateFinished":"2016-01-14T08:22:54+0000","status":"FINISHED","progressUpdateIntervalMs":500,"$$hashKey":"object:1715"},{"title":"Create final table for FactSales (ORC format)","text":"%hive\nCREATE TABLE `factsales_final` (\n`SalesKey` int ,\n`DateKey` timestamp , \n`channelKey` int , \n`StoreKey` int,\n`ProductKey` int,\n`PromotionKey` int,\n`CurrencyKey` int,\n`UnitCost` float,\n`UnitPrice` float,\n`SalesQuantity` int , \n`ReturnQuantity` int,\n`ReturnAmount` float,\n`DiscountQuantity` int,\n`DiscountAmount` float,\n`TotalCost` float,\n`SalesAmount` float,\n`ETLLoadID` int,\n`LoadDate` timestamp , \n`UpdateDate` timestamp \n )\nclustered by (saleskey) into 7 buckets\nstored as orc\nTBLPROPERTIES ('transactional'='true')","dateUpdated":"2016-01-14T08:23:05+0000","config":{"colWidth":12,"graph":{"mode":"table","height":300,"optionOpen":false,"keys":[],"values":[],"groups":[],"scatter":{}},"editorMode":"ace/mode/scala","title":true,"enabled":true},"settings":{"params":{},"forms":{}},"jobName":"paragraph_1452696217466_-888442151","id":"20160113-144337_1561070436","result":{"code":"ERROR","type":"TEXT","msg":"The query did not generate a result set!"},"dateCreated":"2016-01-13T02:43:37+0000","dateStarted":"2016-01-14T08:23:05+0000","dateFinished":"2016-01-14T08:23:10+0000","status":"ERROR","progressUpdateIntervalMs":500,"$$hashKey":"object:1716"},{"title":"populate FactSales final table (from staging)","text":"%hive\ninsert into factsales_final select * from factsales","dateUpdated":"2016-01-14T08:23:17+0000","config":{"colWidth":12,"graph":{"mode":"table","height":300,"optionOpen":false,"keys":[],"values":[],"groups":[],"scatter":{}},"editorMode":"ace/mode/scala","title":true,"enabled":true},"settings":{"params":{},"forms":{}},"jobName":"paragraph_1452696443249_-317769231","id":"20160113-144723_1682335578","result":{"code":"ERROR","type":"TEXT","msg":"The query did not generate a result set!"},"dateCreated":"2016-01-13T02:47:23+0000","dateStarted":"2016-01-14T08:23:17+0000","dateFinished":"2016-01-14T08:24:57+0000","status":"ERROR","progressUpdateIntervalMs":500,"$$hashKey":"object:1717"},{"text":"%md\n\n#### Incremental import of data into Hive from RDBMS\n\nNow that we did the one time bulk import, next we will setup an incremental sqoop job\n\nFirst we create password file containing zeppelin user's PostGres password in HDFS. This is done to allow invocations of the job to be automated/scheduled (without having to manually pass the password )","dateUpdated":"2016-01-13T02:52:58+0000","config":{"colWidth":12,"graph":{"mode":"table","height":300,"optionOpen":false,"keys":[],"values":[],"groups":[],"scatter":{}},"editorMode":"ace/mode/markdown","editorHide":true,"enabled":true},"settings":{"params":{},"forms":{}},"jobName":"paragraph_1452696502670_1134965995","id":"20160113-144822_432127701","result":{"code":"SUCCESS","type":"HTML","msg":"

Incremental import of data into Hive from RDBMS

\n

Now that we did the one time bulk import, next we will setup an incremental sqoop job

\n

First we create password file containing zeppelin user's PostGres password in HDFS. This is done to allow invocations of the job to be automated/scheduled (without having to manually pass the password )

\n"},"dateCreated":"2016-01-13T02:48:22+0000","dateStarted":"2016-01-13T02:52:56+0000","dateFinished":"2016-01-13T02:52:56+0000","status":"FINISHED","progressUpdateIntervalMs":500,"$$hashKey":"object:1718"},{"text":"%sh\n# use -n to ensure newline is not added\necho -n \"zeppelin\" > .password\nhadoop fs -put .password /user/zeppelin/\nrm .password","dateUpdated":"2016-01-14T08:25:35+0000","config":{"colWidth":12,"graph":{"mode":"table","height":300,"optionOpen":false,"keys":[],"values":[],"groups":[],"scatter":{}},"editorMode":"ace/mode/sh","enabled":true},"settings":{"params":{},"forms":{}},"jobName":"paragraph_1452696776580_402002371","id":"20160113-145256_1142575263","result":{"code":"SUCCESS","type":"TEXT","msg":""},"dateCreated":"2016-01-13T02:52:56+0000","dateStarted":"2016-01-14T08:25:35+0000","dateFinished":"2016-01-14T08:25:45+0000","status":"FINISHED","progressUpdateIntervalMs":500,"$$hashKey":"object:1719"},{"text":"%md\nCreate incremental import sqoop job for factsales table and point it as below: \n - --table: table the job is for (i.e. factsales)\n - --password-file: the HDFS location of the password file\n - --incremental: lastmodified (we want to use lastmodified logic to find delta records)\n - --check-column: specify which column that will be used to determine which delta records will be picked up (in this case, records whose updatedate column value is later than 2015-01-01 will be picked up)\n - see [Sqoop documentation on incremental imports](https://sqoop.apache.org/docs/1.4.2/SqoopUserGuide.html#_incremental_imports) for more details\n","dateUpdated":"2016-01-13T02:54:56+0000","config":{"colWidth":12,"graph":{"mode":"table","height":300,"optionOpen":false,"keys":[],"values":[],"groups":[],"scatter":{}},"editorMode":"ace/mode/markdown","editorHide":true,"enabled":true},"settings":{"params":{},"forms":{}},"jobName":"paragraph_1452696816210_942836731","id":"20160113-145336_1316404593","result":{"code":"SUCCESS","type":"HTML","msg":"

Create incremental import sqoop job for factsales table and point it as below:

\n\n"},"dateCreated":"2016-01-13T02:53:36+0000","dateStarted":"2016-01-13T02:54:38+0000","dateFinished":"2016-01-13T02:54:38+0000","status":"FINISHED","progressUpdateIntervalMs":500,"$$hashKey":"object:1720"},{"title":"Create incremental sqoop job","text":"%sh\nsqoop job -create factsales -- import --verbose --connect 'jdbc:postgresql://localhost:5432/contoso' --table factsales -username zeppelin --password-file hdfs://sandbox.hortonworks.com:8020/user/zeppelin/.password --check-column updatedate --incremental lastmodified --last-value '2015-01-01' --hive-import --direct","dateUpdated":"2016-01-14T08:26:02+0000","config":{"colWidth":12,"graph":{"mode":"table","height":300,"optionOpen":false,"keys":[],"values":[],"groups":[],"scatter":{}},"editorMode":"ace/mode/sh","tableHide":true,"title":true,"enabled":true},"settings":{"params":{},"forms":{}},"jobName":"paragraph_1452696864545_1318244389","id":"20160113-145424_721947841","result":{"code":"SUCCESS","type":"TEXT","msg":"Warning: /usr/hdp/2.3.2.0-2950/accumulo does not exist! Accumulo imports will fail.\nPlease set $ACCUMULO_HOME to the root of your Accumulo installation.\n16/01/14 20:26:05 INFO sqoop.Sqoop: Running Sqoop version: 1.4.6.2.3.2.0-2950\nSLF4J: Class path contains multiple SLF4J bindings.\nSLF4J: Found binding in [jar:file:/usr/hdp/2.3.2.0-2950/hadoop/lib/slf4j-log4j12-1.7.10.jar!/org/slf4j/impl/StaticLoggerBinder.class]\nSLF4J: Found binding in [jar:file:/usr/hdp/2.3.2.0-2950/zookeeper/lib/slf4j-log4j12-1.6.1.jar!/org/slf4j/impl/StaticLoggerBinder.class]\nSLF4J: See http://www.slf4j.org/codes.html#multiple_bindings for an explanation.\nSLF4J: Actual binding is of type [org.slf4j.impl.Log4jLoggerFactory]\n16/01/14 20:26:06 DEBUG tool.BaseSqoopTool: Enabled debug logging.\n16/01/14 20:26:06 DEBUG password.FilePasswordLoader: Fetching password from specified path: hdfs://sandbox.hortonworks.com:8020/user/zeppelin/.password\n16/01/14 20:26:07 INFO tool.BaseSqoopTool: Using Hive-specific delimiters for output. You can override\n16/01/14 20:26:07 INFO tool.BaseSqoopTool: delimiters with --fields-terminated-by, etc.\n16/01/14 20:26:07 DEBUG hsqldb.HsqldbJobStorage: Creating job: factsales\n16/01/14 20:26:07 DEBUG hsqldb.HsqldbJobStorage: Job: factsales; Setting property sqoop.tool with class schema => import\n16/01/14 20:26:07 DEBUG hsqldb.HsqldbJobStorage: Job: factsales; Getting property sqoop.tool with class schema\n16/01/14 20:26:07 DEBUG hsqldb.HsqldbJobStorage: => (no result)\n16/01/14 20:26:07 DEBUG hsqldb.HsqldbJobStorage: Job: factsales; Setting property sqoop.property.set.id with class schema => 0\n16/01/14 20:26:07 DEBUG hsqldb.HsqldbJobStorage: Job: factsales; Getting property sqoop.property.set.id with class schema\n16/01/14 20:26:07 DEBUG hsqldb.HsqldbJobStorage: => (no result)\n16/01/14 20:26:07 DEBUG hsqldb.HsqldbJobStorage: Job: factsales; Setting bulk properties for class SqoopOptions\n16/01/14 20:26:07 DEBUG hsqldb.HsqldbJobStorage: Job: factsales; Setting property verbose with class SqoopOptions => true\n16/01/14 20:26:07 DEBUG hsqldb.HsqldbJobStorage: Job: factsales; Getting property verbose with class SqoopOptions\n16/01/14 20:26:07 DEBUG hsqldb.HsqldbJobStorage: => (no result)\n16/01/14 20:26:07 DEBUG hsqldb.HsqldbJobStorage: Job: factsales; Setting property incremental.last.value with class SqoopOptions => 2015-01-01\n16/01/14 20:26:07 DEBUG hsqldb.HsqldbJobStorage: Job: factsales; Getting property incremental.last.value with class SqoopOptions\n16/01/14 20:26:07 DEBUG hsqldb.HsqldbJobStorage: => (no result)\n16/01/14 20:26:07 DEBUG hsqldb.HsqldbJobStorage: Job: factsales; Setting property db.connect.string with class SqoopOptions => jdbc:postgresql://localhost:5432/contoso\n16/01/14 20:26:07 DEBUG hsqldb.HsqldbJobStorage: Job: factsales; Getting property db.connect.string with class SqoopOptions\n16/01/14 20:26:07 DEBUG hsqldb.HsqldbJobStorage: => (no result)\n16/01/14 20:26:07 DEBUG hsqldb.HsqldbJobStorage: Job: factsales; Setting property codegen.output.delimiters.escape with class SqoopOptions => 0\n16/01/14 20:26:07 DEBUG hsqldb.HsqldbJobStorage: Job: factsales; Getting property codegen.output.delimiters.escape with class SqoopOptions\n16/01/14 20:26:07 DEBUG hsqldb.HsqldbJobStorage: => (no result)\n16/01/14 20:26:07 DEBUG hsqldb.HsqldbJobStorage: Job: factsales; Setting property codegen.output.delimiters.enclose.required with class SqoopOptions => false\n16/01/14 20:26:07 DEBUG hsqldb.HsqldbJobStorage: Job: factsales; Getting property codegen.output.delimiters.enclose.required with class SqoopOptions\n16/01/14 20:26:07 DEBUG hsqldb.HsqldbJobStorage: => (no result)\n16/01/14 20:26:07 DEBUG hsqldb.HsqldbJobStorage: Job: factsales; Setting property codegen.input.delimiters.field with class SqoopOptions => 0\n16/01/14 20:26:07 DEBUG hsqldb.HsqldbJobStorage: Job: factsales; Getting property codegen.input.delimiters.field with class SqoopOptions\n16/01/14 20:26:07 DEBUG hsqldb.HsqldbJobStorage: => (no result)\n16/01/14 20:26:07 DEBUG hsqldb.HsqldbJobStorage: Job: factsales; Setting property hbase.create.table with class SqoopOptions => false\n16/01/14 20:26:07 DEBUG hsqldb.HsqldbJobStorage: Job: factsales; Getting property hbase.create.table with class SqoopOptions\n16/01/14 20:26:07 DEBUG hsqldb.HsqldbJobStorage: => (no result)\n16/01/14 20:26:07 DEBUG hsqldb.HsqldbJobStorage: Job: factsales; Setting property hdfs.append.dir with class SqoopOptions => false\n16/01/14 20:26:07 DEBUG hsqldb.HsqldbJobStorage: Job: factsales; Getting property hdfs.append.dir with class SqoopOptions\n16/01/14 20:26:07 DEBUG hsqldb.HsqldbJobStorage: => (no result)\n16/01/14 20:26:07 DEBUG hsqldb.HsqldbJobStorage: Job: factsales; Setting property hive.compute.stats.table with class SqoopOptions => false\n16/01/14 20:26:07 DEBUG hsqldb.HsqldbJobStorage: Job: factsales; Getting property hive.compute.stats.table with class SqoopOptions\n16/01/14 20:26:07 DEBUG hsqldb.HsqldbJobStorage: => (no result)\n16/01/14 20:26:07 DEBUG hsqldb.HsqldbJobStorage: Job: factsales; Setting property db.table with class SqoopOptions => factsales\n16/01/14 20:26:07 DEBUG hsqldb.HsqldbJobStorage: Job: factsales; Getting property db.table with class SqoopOptions\n16/01/14 20:26:07 DEBUG hsqldb.HsqldbJobStorage: => (no result)\n16/01/14 20:26:07 DEBUG hsqldb.HsqldbJobStorage: Job: factsales; Setting property codegen.input.delimiters.escape with class SqoopOptions => 0\n16/01/14 20:26:07 DEBUG hsqldb.HsqldbJobStorage: Job: factsales; Getting property codegen.input.delimiters.escape with class SqoopOptions\n16/01/14 20:26:07 DEBUG hsqldb.HsqldbJobStorage: => (no result)\n16/01/14 20:26:07 DEBUG hsqldb.HsqldbJobStorage: Job: factsales; Setting property import.fetch.size with class SqoopOptions => null\n16/01/14 20:26:07 DEBUG hsqldb.HsqldbJobStorage: Job: factsales; Getting property import.fetch.size with class SqoopOptions\n16/01/14 20:26:07 DEBUG hsqldb.HsqldbJobStorage: => (no result)\n16/01/14 20:26:07 DEBUG hsqldb.HsqldbJobStorage: Job: factsales; Setting property accumulo.create.table with class SqoopOptions => false\n16/01/14 20:26:07 DEBUG hsqldb.HsqldbJobStorage: Job: factsales; Getting property accumulo.create.table with class SqoopOptions\n16/01/14 20:26:07 DEBUG hsqldb.HsqldbJobStorage: => (no result)\n16/01/14 20:26:07 DEBUG hsqldb.HsqldbJobStorage: Job: factsales; Setting property codegen.input.delimiters.enclose.required with class SqoopOptions => false\n16/01/14 20:26:07 DEBUG hsqldb.HsqldbJobStorage: Job: factsales; Getting property codegen.input.delimiters.enclose.required with class SqoopOptions\n16/01/14 20:26:07 DEBUG hsqldb.HsqldbJobStorage: => (no result)\n16/01/14 20:26:07 DEBUG hsqldb.HsqldbJobStorage: Job: factsales; Setting property db.username with class SqoopOptions => zeppelin\n16/01/14 20:26:07 DEBUG hsqldb.HsqldbJobStorage: Job: factsales; Getting property db.username with class SqoopOptions\n16/01/14 20:26:07 DEBUG hsqldb.HsqldbJobStorage: => (no result)\n16/01/14 20:26:07 DEBUG hsqldb.HsqldbJobStorage: Job: factsales; Setting property reset.onemapper with class SqoopOptions => false\n16/01/14 20:26:07 DEBUG hsqldb.HsqldbJobStorage: Job: factsales; Getting property reset.onemapper with class SqoopOptions\n16/01/14 20:26:07 DEBUG hsqldb.HsqldbJobStorage: => (no result)\n16/01/14 20:26:07 DEBUG hsqldb.HsqldbJobStorage: Job: factsales; Setting property codegen.output.delimiters.record with class SqoopOptions => 10\n16/01/14 20:26:07 DEBUG hsqldb.HsqldbJobStorage: Job: factsales; Getting property codegen.output.delimiters.record with class SqoopOptions\n16/01/14 20:26:07 DEBUG hsqldb.HsqldbJobStorage: => (no result)\n16/01/14 20:26:07 DEBUG hsqldb.HsqldbJobStorage: Job: factsales; Setting property import.max.inline.lob.size with class SqoopOptions => 16777216\n16/01/14 20:26:07 DEBUG hsqldb.HsqldbJobStorage: Job: factsales; Getting property import.max.inline.lob.size with class SqoopOptions\n16/01/14 20:26:07 DEBUG hsqldb.HsqldbJobStorage: => (no result)\n16/01/14 20:26:07 DEBUG hsqldb.HsqldbJobStorage: Job: factsales; Setting property hbase.bulk.load.enabled with class SqoopOptions => false\n16/01/14 20:26:07 DEBUG hsqldb.HsqldbJobStorage: Job: factsales; Getting property hbase.bulk.load.enabled with class SqoopOptions\n16/01/14 20:26:07 DEBUG hsqldb.HsqldbJobStorage: => (no result)\n16/01/14 20:26:07 DEBUG hsqldb.HsqldbJobStorage: Job: factsales; Setting property hcatalog.create.table with class SqoopOptions => false\n16/01/14 20:26:07 DEBUG hsqldb.HsqldbJobStorage: Job: factsales; Getting property hcatalog.create.table with class SqoopOptions\n16/01/14 20:26:07 DEBUG hsqldb.HsqldbJobStorage: => (no result)\n16/01/14 20:26:07 DEBUG hsqldb.HsqldbJobStorage: Job: factsales; Setting property db.clear.staging.table with class SqoopOptions => false\n16/01/14 20:26:07 DEBUG hsqldb.HsqldbJobStorage: Job: factsales; Getting property db.clear.staging.table with class SqoopOptions\n16/01/14 20:26:07 DEBUG hsqldb.HsqldbJobStorage: => (no result)\n16/01/14 20:26:07 DEBUG hsqldb.HsqldbJobStorage: Job: factsales; Setting property incremental.col with class SqoopOptions => updatedate\n16/01/14 20:26:07 DEBUG hsqldb.HsqldbJobStorage: Job: factsales; Getting property incremental.col with class SqoopOptions\n16/01/14 20:26:07 DEBUG hsqldb.HsqldbJobStorage: => (no result)\n16/01/14 20:26:07 DEBUG hsqldb.HsqldbJobStorage: Job: factsales; Setting property codegen.input.delimiters.record with class SqoopOptions => 0\n16/01/14 20:26:07 DEBUG hsqldb.HsqldbJobStorage: Job: factsales; Getting property codegen.input.delimiters.record with class SqoopOptions\n16/01/14 20:26:07 DEBUG hsqldb.HsqldbJobStorage: => (no result)\n16/01/14 20:26:07 DEBUG hsqldb.HsqldbJobStorage: Job: factsales; Setting property db.password.file with class SqoopOptions => hdfs://sandbox.hortonworks.com:8020/user/zeppelin/.password\n16/01/14 20:26:07 DEBUG hsqldb.HsqldbJobStorage: Job: factsales; Getting property db.password.file with class SqoopOptions\n16/01/14 20:26:07 DEBUG hsqldb.HsqldbJobStorage: => (no result)\n16/01/14 20:26:07 DEBUG hsqldb.HsqldbJobStorage: Job: factsales; Setting property enable.compression with class SqoopOptions => false\n16/01/14 20:26:07 DEBUG hsqldb.HsqldbJobStorage: Job: factsales; Getting property enable.compression with class SqoopOptions\n16/01/14 20:26:07 DEBUG hsqldb.HsqldbJobStorage: => (no result)\n16/01/14 20:26:07 DEBUG hsqldb.HsqldbJobStorage: Job: factsales; Setting property hive.overwrite.table with class SqoopOptions => false\n16/01/14 20:26:07 DEBUG hsqldb.HsqldbJobStorage: Job: factsales; Getting property hive.overwrite.table with class SqoopOptions\n16/01/14 20:26:07 DEBUG hsqldb.HsqldbJobStorage: => (no result)\n16/01/14 20:26:07 DEBUG hsqldb.HsqldbJobStorage: Job: factsales; Setting property hive.import with class SqoopOptions => true\n16/01/14 20:26:07 DEBUG hsqldb.HsqldbJobStorage: Job: factsales; Getting property hive.import with class SqoopOptions\n16/01/14 20:26:07 DEBUG hsqldb.HsqldbJobStorage: => (no result)\n16/01/14 20:26:07 DEBUG hsqldb.HsqldbJobStorage: Job: factsales; Setting property codegen.input.delimiters.enclose with class SqoopOptions => 0\n16/01/14 20:26:07 DEBUG hsqldb.HsqldbJobStorage: Job: factsales; Getting property codegen.input.delimiters.enclose with class SqoopOptions\n16/01/14 20:26:07 DEBUG hsqldb.HsqldbJobStorage: => (no result)\n16/01/14 20:26:07 DEBUG hsqldb.HsqldbJobStorage: Job: factsales; Setting property accumulo.batch.size with class SqoopOptions => 10240000\n16/01/14 20:26:07 DEBUG hsqldb.HsqldbJobStorage: Job: factsales; Getting property accumulo.batch.size with class SqoopOptions\n16/01/14 20:26:07 DEBUG hsqldb.HsqldbJobStorage: => (no result)\n16/01/14 20:26:07 DEBUG hsqldb.HsqldbJobStorage: Job: factsales; Setting property hive.drop.delims with class SqoopOptions => false\n16/01/14 20:26:07 DEBUG hsqldb.HsqldbJobStorage: Job: factsales; Getting property hive.drop.delims with class SqoopOptions\n16/01/14 20:26:07 DEBUG hsqldb.HsqldbJobStorage: => (no result)\n16/01/14 20:26:07 DEBUG hsqldb.HsqldbJobStorage: Job: factsales; Setting property codegen.output.delimiters.enclose with class SqoopOptions => 0\n16/01/14 20:26:07 DEBUG hsqldb.HsqldbJobStorage: Job: factsales; Getting property codegen.output.delimiters.enclose with class SqoopOptions\n16/01/14 20:26:07 DEBUG hsqldb.HsqldbJobStorage: => (no result)\n16/01/14 20:26:07 DEBUG hsqldb.HsqldbJobStorage: Job: factsales; Setting property hdfs.delete-target.dir with class SqoopOptions => false\n16/01/14 20:26:07 DEBUG hsqldb.HsqldbJobStorage: Job: factsales; Getting property hdfs.delete-target.dir with class SqoopOptions\n16/01/14 20:26:07 DEBUG hsqldb.HsqldbJobStorage: => (no result)\n16/01/14 20:26:07 DEBUG hsqldb.HsqldbJobStorage: Job: factsales; Setting property codegen.output.dir with class SqoopOptions => .\n16/01/14 20:26:07 DEBUG hsqldb.HsqldbJobStorage: Job: factsales; Getting property codegen.output.dir with class SqoopOptions\n16/01/14 20:26:07 DEBUG hsqldb.HsqldbJobStorage: => (no result)\n16/01/14 20:26:07 DEBUG hsqldb.HsqldbJobStorage: Job: factsales; Setting property codegen.auto.compile.dir with class SqoopOptions => true\n16/01/14 20:26:07 DEBUG hsqldb.HsqldbJobStorage: Job: factsales; Getting property codegen.auto.compile.dir with class SqoopOptions\n16/01/14 20:26:07 DEBUG hsqldb.HsqldbJobStorage: => (no result)\n16/01/14 20:26:07 DEBUG hsqldb.HsqldbJobStorage: Job: factsales; Setting property relaxed.isolation with class SqoopOptions => false\n16/01/14 20:26:07 DEBUG hsqldb.HsqldbJobStorage: Job: factsales; Getting property relaxed.isolation with class SqoopOptions\n16/01/14 20:26:07 DEBUG hsqldb.HsqldbJobStorage: => (no result)\n16/01/14 20:26:07 DEBUG hsqldb.HsqldbJobStorage: Job: factsales; Setting property mapreduce.num.mappers with class SqoopOptions => 4\n16/01/14 20:26:07 DEBUG hsqldb.HsqldbJobStorage: Job: factsales; Getting property mapreduce.num.mappers with class SqoopOptions\n16/01/14 20:26:07 DEBUG hsqldb.HsqldbJobStorage: => (no result)\n16/01/14 20:26:07 DEBUG hsqldb.HsqldbJobStorage: Job: factsales; Setting property accumulo.max.latency with class SqoopOptions => 5000\n16/01/14 20:26:07 DEBUG hsqldb.HsqldbJobStorage: Job: factsales; Getting property accumulo.max.latency with class SqoopOptions\n16/01/14 20:26:07 DEBUG hsqldb.HsqldbJobStorage: => (no result)\n16/01/14 20:26:07 DEBUG hsqldb.HsqldbJobStorage: Job: factsales; Setting property import.direct.split.size with class SqoopOptions => 0\n16/01/14 20:26:07 DEBUG hsqldb.HsqldbJobStorage: Job: factsales; Getting property import.direct.split.size with class SqoopOptions\n16/01/14 20:26:07 DEBUG hsqldb.HsqldbJobStorage: => (no result)\n16/01/14 20:26:07 DEBUG hsqldb.HsqldbJobStorage: Job: factsales; Setting property codegen.output.delimiters.field with class SqoopOptions => 1\n16/01/14 20:26:07 DEBUG hsqldb.HsqldbJobStorage: Job: factsales; Getting property codegen.output.delimiters.field with class SqoopOptions\n16/01/14 20:26:07 DEBUG hsqldb.HsqldbJobStorage: => (no result)\n16/01/14 20:26:07 DEBUG hsqldb.HsqldbJobStorage: Job: factsales; Setting property export.new.update with class SqoopOptions => UpdateOnly\n16/01/14 20:26:07 DEBUG hsqldb.HsqldbJobStorage: Job: factsales; Getting property export.new.update with class SqoopOptions\n16/01/14 20:26:07 DEBUG hsqldb.HsqldbJobStorage: => (no result)\n16/01/14 20:26:07 DEBUG hsqldb.HsqldbJobStorage: Job: factsales; Setting property incremental.mode with class SqoopOptions => DateLastModified\n16/01/14 20:26:07 DEBUG hsqldb.HsqldbJobStorage: Job: factsales; Getting property incremental.mode with class SqoopOptions\n16/01/14 20:26:07 DEBUG hsqldb.HsqldbJobStorage: => (no result)\n16/01/14 20:26:07 DEBUG hsqldb.HsqldbJobStorage: Job: factsales; Setting property hdfs.file.format with class SqoopOptions => TextFile\n16/01/14 20:26:07 DEBUG hsqldb.HsqldbJobStorage: Job: factsales; Getting property hdfs.file.format with class SqoopOptions\n16/01/14 20:26:07 DEBUG hsqldb.HsqldbJobStorage: => (no result)\n16/01/14 20:26:07 DEBUG hsqldb.HsqldbJobStorage: Job: factsales; Setting property codegen.compile.dir with class SqoopOptions => /tmp/sqoop-zeppelin/compile/b2777a26b2431854158c85b02bc2c134\n16/01/14 20:26:07 DEBUG hsqldb.HsqldbJobStorage: Job: factsales; Getting property codegen.compile.dir with class SqoopOptions\n16/01/14 20:26:07 DEBUG hsqldb.HsqldbJobStorage: => (no result)\n16/01/14 20:26:07 DEBUG hsqldb.HsqldbJobStorage: Job: factsales; Setting property direct.import with class SqoopOptions => true\n16/01/14 20:26:07 DEBUG hsqldb.HsqldbJobStorage: Job: factsales; Getting property direct.import with class SqoopOptions\n16/01/14 20:26:07 DEBUG hsqldb.HsqldbJobStorage: => (no result)\n16/01/14 20:26:07 DEBUG hsqldb.HsqldbJobStorage: Job: factsales; Setting property hive.fail.table.exists with class SqoopOptions => false\n16/01/14 20:26:07 DEBUG hsqldb.HsqldbJobStorage: Job: factsales; Getting property hive.fail.table.exists with class SqoopOptions\n16/01/14 20:26:07 DEBUG hsqldb.HsqldbJobStorage: => (no result)\n16/01/14 20:26:07 DEBUG hsqldb.HsqldbJobStorage: Job: factsales; Setting property db.batch with class SqoopOptions => false\n16/01/14 20:26:07 DEBUG hsqldb.HsqldbJobStorage: Job: factsales; Getting property db.batch with class SqoopOptions\n16/01/14 20:26:07 DEBUG hsqldb.HsqldbJobStorage: => (no result)\n16/01/14 20:26:07 DEBUG hsqldb.HsqldbJobStorage: Saving sqoop.job.storage.implementations => com.cloudera.sqoop.metastore.hsqldb.HsqldbJobStorage,com.cloudera.sqoop.metastore.hsqldb.AutoHsqldbStorage / null\n16/01/14 20:26:07 DEBUG hsqldb.HsqldbJobStorage: Job: factsales; Setting property sqoop.job.storage.implementations with class config => com.cloudera.sqoop.metastore.hsqldb.HsqldbJobStorage,com.cloudera.sqoop.metastore.hsqldb.AutoHsqldbStorage\n16/01/14 20:26:07 DEBUG hsqldb.HsqldbJobStorage: Job: factsales; Getting property sqoop.job.storage.implementations with class config\n16/01/14 20:26:07 DEBUG hsqldb.HsqldbJobStorage: => (no result)\n16/01/14 20:26:07 DEBUG hsqldb.HsqldbJobStorage: Saving rpc.engine.org.apache.hadoop.hdfs.protocolPB.ClientNamenodeProtocolPB => org.apache.hadoop.ipc.ProtobufRpcEngine / null\n16/01/14 20:26:07 DEBUG hsqldb.HsqldbJobStorage: Job: factsales; Setting property rpc.engine.org.apache.hadoop.hdfs.protocolPB.ClientNamenodeProtocolPB with class config => org.apache.hadoop.ipc.ProtobufRpcEngine\n16/01/14 20:26:07 DEBUG hsqldb.HsqldbJobStorage: Job: factsales; Getting property rpc.engine.org.apache.hadoop.hdfs.protocolPB.ClientNamenodeProtocolPB with class config\n16/01/14 20:26:07 DEBUG hsqldb.HsqldbJobStorage: => (no result)\n16/01/14 20:26:07 DEBUG hsqldb.HsqldbJobStorage: Saving mapreduce.client.genericoptionsparser.used => true / null\n16/01/14 20:26:07 DEBUG hsqldb.HsqldbJobStorage: Job: factsales; Setting property mapreduce.client.genericoptionsparser.used with class config => true\n16/01/14 20:26:07 DEBUG hsqldb.HsqldbJobStorage: Job: factsales; Getting property mapreduce.client.genericoptionsparser.used with class config\n16/01/14 20:26:07 DEBUG hsqldb.HsqldbJobStorage: => (no result)\n16/01/14 20:26:07 DEBUG hsqldb.HsqldbJobStorage: Flushing current transaction\n16/01/14 20:26:07 DEBUG hsqldb.HsqldbJobStorage: Closing connection\n"},"dateCreated":"2016-01-13T02:54:24+0000","dateStarted":"2016-01-14T08:26:02+0000","dateFinished":"2016-01-14T08:26:07+0000","status":"FINISHED","progressUpdateIntervalMs":500,"$$hashKey":"object:1721"},{"title":"Update 2 records of FactSales table (in Postgres)","text":"%sh\nexport PGPASSWORD=zeppelin\npsql -U zeppelin -d contoso -h localhost -c \"update factsales set updatedate = '2016-01-01 00:00:00' where saleskey in (1,2);\"","dateUpdated":"2016-01-14T08:26:24+0000","config":{"colWidth":12,"graph":{"mode":"table","height":300,"optionOpen":false,"keys":[],"values":[],"groups":[],"scatter":{}},"editorMode":"ace/mode/sh","title":true,"enabled":true},"settings":{"params":{},"forms":{}},"jobName":"paragraph_1452696961141_1657497685","id":"20160113-145601_209551253","result":{"code":"SUCCESS","type":"TEXT","msg":"UPDATE 2\n"},"dateCreated":"2016-01-13T02:56:01+0000","dateStarted":"2016-01-14T08:26:24+0000","dateFinished":"2016-01-14T08:26:27+0000","status":"FINISHED","progressUpdateIntervalMs":500,"$$hashKey":"object:1722"},{"title":"Empty the staging table in hive","text":"%hive\ntruncate table factsales","dateUpdated":"2016-01-14T08:26:36+0000","config":{"colWidth":4,"graph":{"mode":"table","height":300,"optionOpen":false,"keys":[],"values":[],"groups":[],"scatter":{}},"editorMode":"ace/mode/scala","title":true,"enabled":true},"settings":{"params":{},"forms":{}},"jobName":"paragraph_1452697017347_819391987","id":"20160113-145657_1022207805","result":{"code":"ERROR","type":"TEXT","msg":"The query did not generate a result set!"},"dateCreated":"2016-01-13T02:56:57+0000","dateStarted":"2016-01-14T08:26:36+0000","dateFinished":"2016-01-14T08:26:37+0000","status":"ERROR","progressUpdateIntervalMs":500,"$$hashKey":"object:1723"},{"title":"Execute incremental sqoop job","text":"%sh\n\n\n\n#Copies Records Modified In PostGres To Hive\n\nsqoop job -exec factsales","dateUpdated":"2016-01-14T08:26:45+0000","config":{"colWidth":4,"graph":{"mode":"table","height":300,"optionOpen":false,"keys":[],"values":[],"groups":[],"scatter":{}},"editorMode":"ace/mode/sh","title":true,"tableHide":true,"editorHide":false,"enabled":true},"settings":{"params":{},"forms":{}},"jobName":"paragraph_1452697271922_-2049540476","id":"20160113-150111_393582518","result":{"code":"SUCCESS","type":"TEXT","msg":"Warning: /usr/hdp/2.3.2.0-2950/accumulo does not exist! Accumulo imports will fail.\nPlease set $ACCUMULO_HOME to the root of your Accumulo installation.\n16/01/14 20:26:48 INFO sqoop.Sqoop: Running Sqoop version: 1.4.6.2.3.2.0-2950\nSLF4J: Class path contains multiple SLF4J bindings.\nSLF4J: Found binding in [jar:file:/usr/hdp/2.3.2.0-2950/hadoop/lib/slf4j-log4j12-1.7.10.jar!/org/slf4j/impl/StaticLoggerBinder.class]\nSLF4J: Found binding in [jar:file:/usr/hdp/2.3.2.0-2950/zookeeper/lib/slf4j-log4j12-1.6.1.jar!/org/slf4j/impl/StaticLoggerBinder.class]\nSLF4J: See http://www.slf4j.org/codes.html#multiple_bindings for an explanation.\nSLF4J: Actual binding is of type [org.slf4j.impl.Log4jLoggerFactory]\n16/01/14 20:26:50 DEBUG sqoop.ConnFactory: Loaded manager factory: org.apache.sqoop.manager.oracle.OraOopManagerFactory\n16/01/14 20:26:50 DEBUG sqoop.ConnFactory: Loaded manager factory: com.cloudera.sqoop.manager.DefaultManagerFactory\n16/01/14 20:26:50 DEBUG sqoop.ConnFactory: Trying ManagerFactory: org.apache.sqoop.manager.oracle.OraOopManagerFactory\n16/01/14 20:26:50 DEBUG oracle.OraOopManagerFactory: Data Connector for Oracle and Hadoop can be called by Sqoop!\n16/01/14 20:26:50 DEBUG sqoop.ConnFactory: Trying ManagerFactory: com.cloudera.sqoop.manager.DefaultManagerFactory\n16/01/14 20:26:50 DEBUG manager.DefaultManagerFactory: Trying with scheme: jdbc:postgresql:\n16/01/14 20:26:50 INFO manager.SqlManager: Using default fetchSize of 1000\n16/01/14 20:26:50 DEBUG sqoop.ConnFactory: Instantiated ConnManager org.apache.sqoop.manager.DirectPostgresqlManager@4324438\n16/01/14 20:26:50 INFO tool.CodeGenTool: Beginning code generation\n16/01/14 20:26:50 DEBUG manager.SqlManager: Execute getColumnInfoRawQuery : SELECT t.* FROM \"factsales\" AS t LIMIT 1\n16/01/14 20:26:50 DEBUG manager.SqlManager: No connection paramenters specified. Using regular API for making connection.\n16/01/14 20:26:50 DEBUG manager.SqlManager: Using fetchSize for next query: 1000\n16/01/14 20:26:50 INFO manager.SqlManager: Executing SQL statement: SELECT t.* FROM \"factsales\" AS t LIMIT 1\n16/01/14 20:26:50 DEBUG manager.SqlManager: Found column saleskey of type [4, 10, 0]\n16/01/14 20:26:50 DEBUG manager.SqlManager: Found column datekey of type [93, 29, 6]\n16/01/14 20:26:50 DEBUG manager.SqlManager: Found column channelkey of type [4, 10, 0]\n16/01/14 20:26:50 DEBUG manager.SqlManager: Found column storekey of type [4, 10, 0]\n16/01/14 20:26:50 DEBUG manager.SqlManager: Found column productkey of type [4, 10, 0]\n16/01/14 20:26:50 DEBUG manager.SqlManager: Found column promotionkey of type [4, 10, 0]\n16/01/14 20:26:50 DEBUG manager.SqlManager: Found column currencykey of type [4, 10, 0]\n16/01/14 20:26:50 DEBUG manager.SqlManager: Found column unitcost of type [8, 17, 17]\n16/01/14 20:26:50 DEBUG manager.SqlManager: Found column unitprice of type [8, 17, 17]\n16/01/14 20:26:50 DEBUG manager.SqlManager: Found column salesquantity of type [4, 10, 0]\n16/01/14 20:26:50 DEBUG manager.SqlManager: Found column returnquantity of type [4, 10, 0]\n16/01/14 20:26:50 DEBUG manager.SqlManager: Found column returnamount of type [8, 17, 17]\n16/01/14 20:26:50 DEBUG manager.SqlManager: Found column discountquantity of type [4, 10, 0]\n16/01/14 20:26:50 DEBUG manager.SqlManager: Found column discountamount of type [8, 17, 17]\n16/01/14 20:26:50 DEBUG manager.SqlManager: Found column totalcost of type [8, 17, 17]\n16/01/14 20:26:50 DEBUG manager.SqlManager: Found column salesamount of type [8, 17, 17]\n16/01/14 20:26:50 DEBUG manager.SqlManager: Found column etlloadid of type [4, 10, 0]\n16/01/14 20:26:50 DEBUG manager.SqlManager: Found column loaddate of type [93, 29, 6]\n16/01/14 20:26:50 DEBUG manager.SqlManager: Found column updatedate of type [93, 29, 6]\n16/01/14 20:26:50 DEBUG orm.ClassWriter: selected columns:\n16/01/14 20:26:50 DEBUG orm.ClassWriter: saleskey\n16/01/14 20:26:50 DEBUG orm.ClassWriter: datekey\n16/01/14 20:26:50 DEBUG orm.ClassWriter: channelkey\n16/01/14 20:26:50 DEBUG orm.ClassWriter: storekey\n16/01/14 20:26:50 DEBUG orm.ClassWriter: productkey\n16/01/14 20:26:50 DEBUG orm.ClassWriter: promotionkey\n16/01/14 20:26:50 DEBUG orm.ClassWriter: currencykey\n16/01/14 20:26:50 DEBUG orm.ClassWriter: unitcost\n16/01/14 20:26:50 DEBUG orm.ClassWriter: unitprice\n16/01/14 20:26:50 DEBUG orm.ClassWriter: salesquantity\n16/01/14 20:26:50 DEBUG orm.ClassWriter: returnquantity\n16/01/14 20:26:50 DEBUG orm.ClassWriter: returnamount\n16/01/14 20:26:50 DEBUG orm.ClassWriter: discountquantity\n16/01/14 20:26:50 DEBUG orm.ClassWriter: discountamount\n16/01/14 20:26:50 DEBUG orm.ClassWriter: totalcost\n16/01/14 20:26:50 DEBUG orm.ClassWriter: salesamount\n16/01/14 20:26:50 DEBUG orm.ClassWriter: etlloadid\n16/01/14 20:26:50 DEBUG orm.ClassWriter: loaddate\n16/01/14 20:26:50 DEBUG orm.ClassWriter: updatedate\n16/01/14 20:26:50 DEBUG orm.ClassWriter: Writing source file: /tmp/sqoop-zeppelin/compile/3d70e59eeb4b9f7850bce766ddf373a4/factsales.java\n16/01/14 20:26:50 DEBUG orm.ClassWriter: Table name: factsales\n16/01/14 20:26:50 DEBUG orm.ClassWriter: Columns: saleskey:4, datekey:93, channelkey:4, storekey:4, productkey:4, promotionkey:4, currencykey:4, unitcost:8, unitprice:8, salesquantity:4, returnquantity:4, returnamount:8, discountquantity:4, discountamount:8, totalcost:8, salesamount:8, etlloadid:4, loaddate:93, updatedate:93, \n16/01/14 20:26:50 DEBUG orm.ClassWriter: sourceFilename is factsales.java\n16/01/14 20:26:50 DEBUG orm.CompilationManager: Found existing /tmp/sqoop-zeppelin/compile/3d70e59eeb4b9f7850bce766ddf373a4/\n16/01/14 20:26:50 INFO orm.CompilationManager: HADOOP_MAPRED_HOME is /usr/hdp/2.3.2.0-2950/hadoop-mapreduce\n16/01/14 20:26:50 DEBUG orm.CompilationManager: Returning jar file path /usr/hdp/2.3.2.0-2950/hadoop-mapreduce/hadoop-mapreduce-client-core.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/hadoop-mapreduce-client-core-2.7.1.2.3.2.0-2950.jar\n16/01/14 20:26:50 DEBUG orm.CompilationManager: Current sqoop classpath = /usr/hdp/2.3.2.0-2950/hadoop/conf:/usr/hdp/2.3.2.0-2950/hadoop/lib/commons-io-2.4.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/azure-storage-2.2.0.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/jettison-1.1.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/ranger-plugins-audit-0.5.0.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/zookeeper-3.4.6.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/commons-codec-1.4.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/api-util-1.0.0-M20.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/jackson-xc-1.9.13.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/xz-1.0.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/noggit-0.6.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/api-asn1-api-1.0.0-M20.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/commons-beanutils-1.7.0.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/commons-beanutils-core-1.8.0.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/java-xmlbuilder-0.4.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/protobuf-java-2.5.0.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/commons-httpclient-3.1.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/jackson-annotations-2.2.3.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/jackson-mapper-asl-1.9.13.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/hamcrest-core-1.3.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/httpcore-4.2.5.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/ranger-plugins-common-0.5.0.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/javax.persistence-2.1.0.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/jsch-0.1.42.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/jsp-api-2.1.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/commons-collections-3.2.1.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/snappy-java-1.0.4.1.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/log4j-1.2.17.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/jets3t-0.9.0.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/slf4j-log4j12-1.7.10.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/activation-1.1.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/htrace-core-3.1.0-incubating.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/curator-recipes-2.7.1.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/curator-client-2.7.1.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/guava-11.0.2.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/httpclient-4.2.5.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/commons-lang-2.6.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/jetty-6.1.26.hwx.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/asm-3.2.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/eclipselink-2.5.2-M1.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/jaxb-impl-2.2.3-1.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/jackson-databind-2.2.3.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/jsr305-3.0.0.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/xmlenc-0.52.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/stax-api-1.0-2.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/jersey-json-1.9.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/jersey-core-1.9.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/mysql-connector-java.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/hadoop-common-2.7.1.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/jackson-core-asl-1.9.13.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/commons-digester-1.8.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/jackson-jaxrs-1.9.13.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/paranamer-2.3.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/netty-3.6.2.Final.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/slf4j-api-1.7.10.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/commons-logging-1.1.3.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/avro-1.7.4.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/gson-2.2.4.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/ranger-plugins-cred-0.5.0.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/junit-4.11.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/microsoft-windowsazure-storage-sdk-0.6.0.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/ranger-hdfs-plugin-0.5.0.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/jaxb-api-2.2.2.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/httpmime-4.2.5.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/commons-math3-3.1.1.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/curator-framework-2.7.1.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/apacheds-kerberos-codec-2.0.0-M15.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/mockito-all-1.8.5.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/ranger-yarn-plugin-0.5.0.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/commons-net-3.1.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/aws-java-sdk-1.7.4.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/ojdbc6.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/jersey-server-1.9.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/commons-configuration-1.6.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/ranger_solrj-0.5.0.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/jetty-util-6.1.26.hwx.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/commons-cli-1.2.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/apacheds-i18n-2.0.0-M15.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/commons-compress-1.4.1.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/jackson-core-2.2.3.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/servlet-api-2.5.jar:/usr/hdp/2.3.2.0-2950/hadoop/.//hadoop-nfs-2.7.1.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hadoop/.//hadoop-common.jar:/usr/hdp/2.3.2.0-2950/hadoop/.//hadoop-auth-2.7.1.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hadoop/.//hadoop-aws-2.7.1.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hadoop/.//hadoop-common-2.7.1.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hadoop/.//hadoop-azure-2.7.1.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hadoop/.//hadoop-common-tests.jar:/usr/hdp/2.3.2.0-2950/hadoop/.//hadoop-annotations.jar:/usr/hdp/2.3.2.0-2950/hadoop/.//hadoop-azure.jar:/usr/hdp/2.3.2.0-2950/hadoop/.//hadoop-aws.jar:/usr/hdp/2.3.2.0-2950/hadoop/.//hadoop-auth.jar:/usr/hdp/2.3.2.0-2950/hadoop/.//hadoop-annotations-2.7.1.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hadoop/.//hadoop-common-2.7.1.2.3.2.0-2950-tests.jar:/usr/hdp/2.3.2.0-2950/hadoop/.//hadoop-nfs.jar:/usr/hdp/2.3.2.0-2950/hadoop-hdfs/./:/usr/hdp/2.3.2.0-2950/hadoop-hdfs/lib/commons-io-2.4.jar:/usr/hdp/2.3.2.0-2950/hadoop-hdfs/lib/commons-codec-1.4.jar:/usr/hdp/2.3.2.0-2950/hadoop-hdfs/lib/commons-daemon-1.0.13.jar:/usr/hdp/2.3.2.0-2950/hadoop-hdfs/lib/protobuf-java-2.5.0.jar:/usr/hdp/2.3.2.0-2950/hadoop-hdfs/lib/jackson-mapper-asl-1.9.13.jar:/usr/hdp/2.3.2.0-2950/hadoop-hdfs/lib/log4j-1.2.17.jar:/usr/hdp/2.3.2.0-2950/hadoop-hdfs/lib/htrace-core-3.1.0-incubating.jar:/usr/hdp/2.3.2.0-2950/hadoop-hdfs/lib/leveldbjni-all-1.8.jar:/usr/hdp/2.3.2.0-2950/hadoop-hdfs/lib/guava-11.0.2.jar:/usr/hdp/2.3.2.0-2950/hadoop-hdfs/lib/commons-lang-2.6.jar:/usr/hdp/2.3.2.0-2950/hadoop-hdfs/lib/jetty-6.1.26.hwx.jar:/usr/hdp/2.3.2.0-2950/hadoop-hdfs/lib/asm-3.2.jar:/usr/hdp/2.3.2.0-2950/hadoop-hdfs/lib/jsr305-3.0.0.jar:/usr/hdp/2.3.2.0-2950/hadoop-hdfs/lib/xmlenc-0.52.jar:/usr/hdp/2.3.2.0-2950/hadoop-hdfs/lib/jersey-core-1.9.jar:/usr/hdp/2.3.2.0-2950/hadoop-hdfs/lib/jackson-core-asl-1.9.13.jar:/usr/hdp/2.3.2.0-2950/hadoop-hdfs/lib/netty-all-4.0.23.Final.jar:/usr/hdp/2.3.2.0-2950/hadoop-hdfs/lib/netty-3.6.2.Final.jar:/usr/hdp/2.3.2.0-2950/hadoop-hdfs/lib/commons-logging-1.1.3.jar:/usr/hdp/2.3.2.0-2950/hadoop-hdfs/lib/xercesImpl-2.9.1.jar:/usr/hdp/2.3.2.0-2950/hadoop-hdfs/lib/okio-1.4.0.jar:/usr/hdp/2.3.2.0-2950/hadoop-hdfs/lib/xml-apis-1.3.04.jar:/usr/hdp/2.3.2.0-2950/hadoop-hdfs/lib/jersey-server-1.9.jar:/usr/hdp/2.3.2.0-2950/hadoop-hdfs/lib/okhttp-2.4.0.jar:/usr/hdp/2.3.2.0-2950/hadoop-hdfs/lib/jetty-util-6.1.26.hwx.jar:/usr/hdp/2.3.2.0-2950/hadoop-hdfs/lib/commons-cli-1.2.jar:/usr/hdp/2.3.2.0-2950/hadoop-hdfs/lib/servlet-api-2.5.jar:/usr/hdp/2.3.2.0-2950/hadoop-hdfs/.//hadoop-hdfs-2.7.1.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hadoop-hdfs/.//hadoop-hdfs-2.7.1.2.3.2.0-2950-tests.jar:/usr/hdp/2.3.2.0-2950/hadoop-hdfs/.//hadoop-hdfs-nfs.jar:/usr/hdp/2.3.2.0-2950/hadoop-hdfs/.//hadoop-hdfs-nfs-2.7.1.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hadoop-hdfs/.//hadoop-hdfs.jar:/usr/hdp/2.3.2.0-2950/hadoop-hdfs/.//hadoop-hdfs-tests.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/commons-io-2.4.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/jettison-1.1.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/zookeeper-3.4.6.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/commons-codec-1.4.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/api-util-1.0.0-M20.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/jackson-xc-1.9.13.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/xz-1.0.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/api-asn1-api-1.0.0-M20.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/commons-beanutils-1.7.0.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/commons-beanutils-core-1.8.0.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/java-xmlbuilder-0.4.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/javassist-3.18.1-GA.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/protobuf-java-2.5.0.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/commons-httpclient-3.1.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/jackson-mapper-asl-1.9.13.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/httpcore-4.2.5.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/jsch-0.1.42.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/jsp-api-2.1.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/commons-collections-3.2.1.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/snappy-java-1.0.4.1.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/log4j-1.2.17.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/jets3t-0.9.0.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/activation-1.1.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/jersey-guice-1.9.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/htrace-core-3.1.0-incubating.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/curator-recipes-2.7.1.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/curator-client-2.7.1.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/leveldbjni-all-1.8.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/guice-servlet-3.0.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/guava-11.0.2.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/httpclient-4.2.5.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/commons-lang-2.6.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/jetty-6.1.26.hwx.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/asm-3.2.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/jersey-client-1.9.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/jaxb-impl-2.2.3-1.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/objenesis-2.1.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/guice-3.0.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/jsr305-3.0.0.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/xmlenc-0.52.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/stax-api-1.0-2.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/jersey-json-1.9.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/jersey-core-1.9.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/mysql-connector-java.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/jackson-core-asl-1.9.13.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/commons-digester-1.8.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/jackson-jaxrs-1.9.13.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/paranamer-2.3.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/netty-3.6.2.Final.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/commons-logging-1.1.3.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/fst-2.24.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/avro-1.7.4.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/gson-2.2.4.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/zookeeper-3.4.6.2.3.2.0-2950-tests.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/microsoft-windowsazure-storage-sdk-0.6.0.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/jaxb-api-2.2.2.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/commons-math3-3.1.1.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/curator-framework-2.7.1.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/apacheds-kerberos-codec-2.0.0-M15.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/commons-net-3.1.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/jersey-server-1.9.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/commons-configuration-1.6.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/jetty-util-6.1.26.hwx.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/commons-cli-1.2.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/javax.inject-1.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/apacheds-i18n-2.0.0-M15.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/commons-compress-1.4.1.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/aopalliance-1.0.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/jackson-core-2.2.3.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/servlet-api-2.5.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/.//hadoop-yarn-server-timeline-plugins.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/.//hadoop-yarn-client.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/.//hadoop-yarn-server-resourcemanager.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/.//hadoop-yarn-server-web-proxy-2.7.1.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/.//hadoop-yarn-registry-2.7.1.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/.//hadoop-yarn-api.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/.//hadoop-yarn-registry.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/.//hadoop-yarn-api-2.7.1.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/.//hadoop-yarn-applications-unmanaged-am-launcher-2.7.1.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/.//hadoop-yarn-server-common-2.7.1.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/.//hadoop-yarn-server-nodemanager-2.7.1.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/.//hadoop-yarn-client-2.7.1.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/.//hadoop-yarn-server-common.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/.//hadoop-yarn-server-sharedcachemanager.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/.//hadoop-yarn-common.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/.//hadoop-yarn-server-resourcemanager-2.7.1.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/.//hadoop-yarn-applications-unmanaged-am-launcher.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/.//hadoop-yarn-common-2.7.1.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/.//hadoop-yarn-server-applicationhistoryservice-2.7.1.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/.//hadoop-yarn-server-timeline-plugins-2.7.1.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/.//hadoop-yarn-server-tests-2.7.1.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/.//hadoop-yarn-server-applicationhistoryservice.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/.//hadoop-yarn-server-tests.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/.//hadoop-yarn-applications-distributedshell-2.7.1.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/.//hadoop-yarn-server-web-proxy.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/.//hadoop-yarn-server-sharedcachemanager-2.7.1.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/.//hadoop-yarn-server-nodemanager.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/.//hadoop-yarn-applications-distributedshell.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/lib/commons-io-2.4.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/lib/xz-1.0.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/lib/protobuf-java-2.5.0.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/lib/jackson-mapper-asl-1.9.13.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/lib/hamcrest-core-1.3.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/lib/snappy-java-1.0.4.1.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/lib/log4j-1.2.17.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/lib/jersey-guice-1.9.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/lib/leveldbjni-all-1.8.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/lib/guice-servlet-3.0.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/lib/asm-3.2.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/lib/guice-3.0.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/lib/jersey-core-1.9.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/lib/jackson-core-asl-1.9.13.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/lib/paranamer-2.3.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/lib/netty-3.6.2.Final.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/lib/avro-1.7.4.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/lib/junit-4.11.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/lib/jersey-server-1.9.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/lib/javax.inject-1.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/lib/commons-compress-1.4.1.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/lib/aopalliance-1.0.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//commons-io-2.4.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//jettison-1.1.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//zookeeper-3.4.6.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//commons-codec-1.4.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//hadoop-mapreduce-client-shuffle-2.7.1.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//api-util-1.0.0-M20.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//jackson-xc-1.9.13.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//xz-1.0.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//api-asn1-api-1.0.0-M20.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//commons-beanutils-1.7.0.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//commons-beanutils-core-1.8.0.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//java-xmlbuilder-0.4.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//protobuf-java-2.5.0.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//hadoop-extras-2.7.1.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//commons-httpclient-3.1.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//jackson-mapper-asl-1.9.13.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//hamcrest-core-1.3.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//httpcore-4.2.5.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//hadoop-distcp-2.7.1.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//jsch-0.1.42.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//hadoop-gridmix-2.7.1.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//jsp-api-2.1.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//metrics-core-3.0.1.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//commons-collections-3.2.1.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//hadoop-openstack.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//hadoop-mapreduce-client-jobclient-2.7.1.2.3.2.0-2950-tests.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//hadoop-archives-2.7.1.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//snappy-java-1.0.4.1.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//log4j-1.2.17.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//jets3t-0.9.0.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//hadoop-datajoin-2.7.1.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//activation-1.1.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//hadoop-mapreduce-client-core.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//htrace-core-3.1.0-incubating.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//hadoop-sls.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//curator-recipes-2.7.1.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//curator-client-2.7.1.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//hadoop-auth-2.7.1.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//guava-11.0.2.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//httpclient-4.2.5.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//commons-lang-2.6.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//hadoop-mapreduce-examples.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//jetty-6.1.26.hwx.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//asm-3.2.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//hadoop-mapreduce-client-app-2.7.1.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//hadoop-rumen.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//jaxb-impl-2.2.3-1.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//jsr305-3.0.0.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//hadoop-mapreduce-client-jobclient-2.7.1.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//hadoop-mapreduce-client-hs.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//hadoop-mapreduce-client-jobclient-tests.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//xmlenc-0.52.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//stax-api-1.0-2.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//jersey-json-1.9.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//hadoop-ant-2.7.1.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//jersey-core-1.9.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//hadoop-datajoin.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//jackson-core-asl-1.9.13.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//hadoop-mapreduce-client-shuffle.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//commons-digester-1.8.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//joda-time-2.8.2.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//hadoop-mapreduce-client-hs-plugins.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//jackson-jaxrs-1.9.13.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//commons-lang3-3.3.2.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//paranamer-2.3.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//netty-3.6.2.Final.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//commons-logging-1.1.3.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//avro-1.7.4.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//gson-2.2.4.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//hadoop-openstack-2.7.1.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//hadoop-streaming.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//junit-4.11.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//microsoft-windowsazure-storage-sdk-0.6.0.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//hadoop-mapreduce-client-hs-plugins-2.7.1.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//jaxb-api-2.2.2.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//hadoop-ant.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//hadoop-mapreduce-client-jobclient.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//hadoop-auth.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//commons-math3-3.1.1.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//hadoop-archives.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//curator-framework-2.7.1.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//apacheds-kerberos-codec-2.0.0-M15.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//hadoop-mapreduce-client-common.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//mockito-all-1.8.5.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//hadoop-gridmix.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//commons-net-3.1.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//hadoop-mapreduce-examples-2.7.1.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//hadoop-sls-2.7.1.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//jersey-server-1.9.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//commons-configuration-1.6.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//hadoop-distcp.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//hadoop-mapreduce-client-hs-2.7.1.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//jetty-util-6.1.26.hwx.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//commons-cli-1.2.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//hadoop-mapreduce-client-core-2.7.1.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//hadoop-streaming-2.7.1.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//apacheds-i18n-2.0.0-M15.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//commons-compress-1.4.1.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//hadoop-mapreduce-client-common-2.7.1.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//hadoop-extras.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//jackson-core-2.2.3.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//hadoop-mapreduce-client-app.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//hadoop-rumen-2.7.1.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//servlet-api-2.5.jar:/usr/hdp/current/hive-client/lib/libthrift-0.9.2.jar::/usr/hdp/2.3.2.0-2950//sqoop/conf:/etc/zookeeper/conf::/usr/hdp/2.3.2.0-2950//sqoop/lib/ant-contrib-1.0b3.jar:/usr/hdp/2.3.2.0-2950//sqoop/lib/ant-eclipse-1.0-jvm1.2.jar:/usr/hdp/2.3.2.0-2950//sqoop/lib/avro-1.7.5.jar:/usr/hdp/2.3.2.0-2950//sqoop/lib/avro-mapred-1.7.5-hadoop2.jar:/usr/hdp/2.3.2.0-2950//sqoop/lib/commons-codec-1.4.jar:/usr/hdp/2.3.2.0-2950//sqoop/lib/commons-compress-1.4.1.jar:/usr/hdp/2.3.2.0-2950//sqoop/lib/commons-io-1.4.jar:/usr/hdp/2.3.2.0-2950//sqoop/lib/commons-jexl-2.1.1.jar:/usr/hdp/2.3.2.0-2950//sqoop/lib/commons-logging-1.1.1.jar:/usr/hdp/2.3.2.0-2950//sqoop/lib/hsqldb-1.8.0.10.jar:/usr/hdp/2.3.2.0-2950//sqoop/lib/jackson-annotations-2.3.0.jar:/usr/hdp/2.3.2.0-2950//sqoop/lib/jackson-core-2.3.1.jar:/usr/hdp/2.3.2.0-2950//sqoop/lib/jackson-core-asl-1.9.13.jar:/usr/hdp/2.3.2.0-2950//sqoop/lib/jackson-databind-2.3.1.jar:/usr/hdp/2.3.2.0-2950//sqoop/lib/jackson-mapper-asl-1.9.13.jar:/usr/hdp/2.3.2.0-2950//sqoop/lib/kite-data-core-1.0.0.jar:/usr/hdp/2.3.2.0-2950//sqoop/lib/kite-data-hive-1.0.0.jar:/usr/hdp/2.3.2.0-2950//sqoop/lib/kite-data-mapreduce-1.0.0.jar:/usr/hdp/2.3.2.0-2950//sqoop/lib/kite-hadoop-compatibility-1.0.0.jar:/usr/hdp/2.3.2.0-2950//sqoop/lib/mysql-connector-java.jar:/usr/hdp/2.3.2.0-2950//sqoop/lib/opencsv-2.3.jar:/usr/hdp/2.3.2.0-2950//sqoop/lib/paranamer-2.3.jar:/usr/hdp/2.3.2.0-2950//sqoop/lib/parquet-avro-1.4.1.jar:/usr/hdp/2.3.2.0-2950//sqoop/lib/parquet-column-1.4.1.jar:/usr/hdp/2.3.2.0-2950//sqoop/lib/parquet-common-1.4.1.jar:/usr/hdp/2.3.2.0-2950//sqoop/lib/parquet-encoding-1.4.1.jar:/usr/hdp/2.3.2.0-2950//sqoop/lib/parquet-format-2.0.0.jar:/usr/hdp/2.3.2.0-2950//sqoop/lib/parquet-generator-1.4.1.jar:/usr/hdp/2.3.2.0-2950//sqoop/lib/parquet-hadoop-1.4.1.jar:/usr/hdp/2.3.2.0-2950//sqoop/lib/parquet-jackson-1.4.1.jar:/usr/hdp/2.3.2.0-2950//sqoop/lib/postgresql-9.4.1207.jar:/usr/hdp/2.3.2.0-2950//sqoop/lib/slf4j-api-1.6.1.jar:/usr/hdp/2.3.2.0-2950//sqoop/lib/snappy-java-1.0.5.jar:/usr/hdp/2.3.2.0-2950//sqoop/lib/xz-1.0.jar:/usr/hdp/2.3.2.0-2950/hbase/conf:/usr/lib/jvm/java-1.7.0-openjdk-1.7.0.91.x86_64/lib/tools.jar:/usr/hdp/2.3.2.0-2950/hbase:/usr/hdp/2.3.2.0-2950/hbase/lib/activation-1.1.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/aopalliance-1.0.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/apacheds-i18n-2.0.0-M15.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/apacheds-kerberos-codec-2.0.0-M15.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/api-asn1-api-1.0.0-M20.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/api-util-1.0.0-M20.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/asm-3.1.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/avro-1.7.4.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/commons-beanutils-1.7.0.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/commons-beanutils-core-1.8.0.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/commons-cli-1.2.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/commons-codec-1.9.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/commons-collections-3.2.1.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/commons-compress-1.4.1.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/commons-configuration-1.6.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/commons-daemon-1.0.13.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/commons-digester-1.8.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/commons-el-1.0.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/commons-httpclient-3.1.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/commons-io-2.4.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/commons-lang-2.6.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/commons-logging-1.2.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/commons-math-2.2.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/commons-math3-3.1.1.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/commons-net-3.1.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/curator-client-2.7.1.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/curator-framework-2.7.1.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/curator-recipes-2.7.1.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/disruptor-3.3.0.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/eclipselink-2.5.2-M1.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/findbugs-annotations-1.3.9-1.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/gson-2.2.4.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/guava-12.0.1.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/guice-3.0.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/guice-servlet-3.0.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/hbase-annotations-1.1.2.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/hbase-annotations-1.1.2.2.3.2.0-2950-tests.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/hbase-annotations.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/hbase-client-1.1.2.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/hbase-client.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/hbase-common-1.1.2.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/hbase-common-1.1.2.2.3.2.0-2950-tests.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/hbase-common.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/hbase-examples-1.1.2.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/hbase-examples.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/hbase-hadoop2-compat-1.1.2.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/hbase-hadoop2-compat.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/hbase-hadoop-compat-1.1.2.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/hbase-hadoop-compat.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/hbase-it-1.1.2.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/hbase-it-1.1.2.2.3.2.0-2950-tests.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/hbase-it.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/hbase-prefix-tree-1.1.2.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/hbase-prefix-tree.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/hbase-procedure-1.1.2.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/hbase-procedure.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/hbase-protocol-1.1.2.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/hbase-protocol.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/hbase-resource-bundle-1.1.2.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/hbase-resource-bundle.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/hbase-rest-1.1.2.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/hbase-rest.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/hbase-server-1.1.2.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/hbase-server-1.1.2.2.3.2.0-2950-tests.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/hbase-server.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/hbase-shell-1.1.2.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/hbase-shell.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/hbase-thrift-1.1.2.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/hbase-thrift.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/htrace-core-3.1.0-incubating.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/httpclient-4.2.5.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/httpcore-4.2.5.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/httpmime-4.2.5.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/jackson-core-2.2.3.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/jackson-core-asl-1.9.13.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/jackson-jaxrs-1.9.13.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/jackson-mapper-asl-1.9.13.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/jackson-xc-1.9.13.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/jamon-runtime-2.3.1.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/jasper-compiler-5.5.23.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/jasper-runtime-5.5.23.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/javax.inject-1.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/java-xmlbuilder-0.4.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/jaxb-api-2.2.2.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/jaxb-impl-2.2.3-1.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/jcodings-1.0.8.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/jersey-client-1.9.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/jersey-core-1.9.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/jersey-guice-1.9.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/jersey-json-1.9.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/jersey-server-1.9.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/jets3t-0.9.0.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/jettison-1.3.3.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/jetty-6.1.26.hwx.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/jetty-sslengine-6.1.26.hwx.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/jetty-util-6.1.26.hwx.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/joni-2.1.2.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/jruby-complete-1.6.8.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/jsch-0.1.42.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/jsp-2.1-6.1.14.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/jsp-api-2.1-6.1.14.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/jsr305-1.3.9.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/junit-4.11.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/leveldbjni-all-1.8.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/libthrift-0.9.0.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/log4j-1.2.17.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/metrics-core-2.2.0.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/microsoft-windowsazure-storage-sdk-0.6.0.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/mysql-connector-java.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/netty-3.2.4.Final.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/netty-all-4.0.23.Final.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/noggit-0.6.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/ojdbc6.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/okhttp-2.4.0.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/okio-1.4.0.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/paranamer-2.3.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/phoenix-server.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/protobuf-java-2.5.0.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/ranger-hbase-plugin-0.5.0.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/ranger-plugins-audit-0.5.0.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/ranger-plugins-common-0.5.0.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/ranger-plugins-cred-0.5.0.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/ranger_solrj-0.5.0.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/servlet-api-2.5-6.1.14.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/servlet-api-2.5.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/slf4j-api-1.7.7.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/snappy-java-1.0.4.1.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/spymemcached-2.11.6.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/xercesImpl-2.9.1.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/xml-apis-1.3.04.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/xmlenc-0.52.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/xz-1.0.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/zookeeper.jar:/usr/hdp/2.3.2.0-2950/hadoop/conf:/usr/hdp/2.3.2.0-2950/hadoop/lib/commons-io-2.4.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/azure-storage-2.2.0.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/jettison-1.1.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/ranger-plugins-audit-0.5.0.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/zookeeper-3.4.6.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/commons-codec-1.4.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/api-util-1.0.0-M20.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/jackson-xc-1.9.13.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/xz-1.0.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/noggit-0.6.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/api-asn1-api-1.0.0-M20.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/commons-beanutils-1.7.0.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/commons-beanutils-core-1.8.0.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/java-xmlbuilder-0.4.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/protobuf-java-2.5.0.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/commons-httpclient-3.1.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/jackson-annotations-2.2.3.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/jackson-mapper-asl-1.9.13.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/hamcrest-core-1.3.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/httpcore-4.2.5.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/ranger-plugins-common-0.5.0.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/javax.persistence-2.1.0.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/jsch-0.1.42.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/jsp-api-2.1.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/commons-collections-3.2.1.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/snappy-java-1.0.4.1.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/log4j-1.2.17.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/jets3t-0.9.0.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/slf4j-log4j12-1.7.10.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/activation-1.1.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/htrace-core-3.1.0-incubating.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/curator-recipes-2.7.1.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/curator-client-2.7.1.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/guava-11.0.2.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/httpclient-4.2.5.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/commons-lang-2.6.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/jetty-6.1.26.hwx.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/asm-3.2.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/eclipselink-2.5.2-M1.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/jaxb-impl-2.2.3-1.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/jackson-databind-2.2.3.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/jsr305-3.0.0.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/xmlenc-0.52.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/stax-api-1.0-2.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/jersey-json-1.9.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/jersey-core-1.9.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/mysql-connector-java.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/hadoop-common-2.7.1.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/jackson-core-asl-1.9.13.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/commons-digester-1.8.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/jackson-jaxrs-1.9.13.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/paranamer-2.3.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/netty-3.6.2.Final.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/slf4j-api-1.7.10.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/commons-logging-1.1.3.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/avro-1.7.4.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/gson-2.2.4.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/ranger-plugins-cred-0.5.0.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/junit-4.11.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/microsoft-windowsazure-storage-sdk-0.6.0.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/ranger-hdfs-plugin-0.5.0.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/jaxb-api-2.2.2.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/httpmime-4.2.5.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/commons-math3-3.1.1.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/curator-framework-2.7.1.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/apacheds-kerberos-codec-2.0.0-M15.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/mockito-all-1.8.5.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/ranger-yarn-plugin-0.5.0.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/commons-net-3.1.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/aws-java-sdk-1.7.4.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/ojdbc6.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/jersey-server-1.9.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/commons-configuration-1.6.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/ranger_solrj-0.5.0.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/jetty-util-6.1.26.hwx.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/commons-cli-1.2.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/apacheds-i18n-2.0.0-M15.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/commons-compress-1.4.1.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/jackson-core-2.2.3.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/servlet-api-2.5.jar:/usr/hdp/2.3.2.0-2950/hadoop/.//hadoop-nfs-2.7.1.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hadoop/.//hadoop-common.jar:/usr/hdp/2.3.2.0-2950/hadoop/.//hadoop-auth-2.7.1.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hadoop/.//hadoop-aws-2.7.1.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hadoop/.//hadoop-common-2.7.1.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hadoop/.//hadoop-azure-2.7.1.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hadoop/.//hadoop-common-tests.jar:/usr/hdp/2.3.2.0-2950/hadoop/.//hadoop-annotations.jar:/usr/hdp/2.3.2.0-2950/hadoop/.//hadoop-azure.jar:/usr/hdp/2.3.2.0-2950/hadoop/.//hadoop-aws.jar:/usr/hdp/2.3.2.0-2950/hadoop/.//hadoop-auth.jar:/usr/hdp/2.3.2.0-2950/hadoop/.//hadoop-annotations-2.7.1.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hadoop/.//hadoop-common-2.7.1.2.3.2.0-2950-tests.jar:/usr/hdp/2.3.2.0-2950/hadoop/.//hadoop-nfs.jar:/usr/hdp/2.3.2.0-2950/hadoop-hdfs/./:/usr/hdp/2.3.2.0-2950/hadoop-hdfs/lib/commons-io-2.4.jar:/usr/hdp/2.3.2.0-2950/hadoop-hdfs/lib/commons-codec-1.4.jar:/usr/hdp/2.3.2.0-2950/hadoop-hdfs/lib/commons-daemon-1.0.13.jar:/usr/hdp/2.3.2.0-2950/hadoop-hdfs/lib/protobuf-java-2.5.0.jar:/usr/hdp/2.3.2.0-2950/hadoop-hdfs/lib/jackson-mapper-asl-1.9.13.jar:/usr/hdp/2.3.2.0-2950/hadoop-hdfs/lib/log4j-1.2.17.jar:/usr/hdp/2.3.2.0-2950/hadoop-hdfs/lib/htrace-core-3.1.0-incubating.jar:/usr/hdp/2.3.2.0-2950/hadoop-hdfs/lib/leveldbjni-all-1.8.jar:/usr/hdp/2.3.2.0-2950/hadoop-hdfs/lib/guava-11.0.2.jar:/usr/hdp/2.3.2.0-2950/hadoop-hdfs/lib/commons-lang-2.6.jar:/usr/hdp/2.3.2.0-2950/hadoop-hdfs/lib/jetty-6.1.26.hwx.jar:/usr/hdp/2.3.2.0-2950/hadoop-hdfs/lib/asm-3.2.jar:/usr/hdp/2.3.2.0-2950/hadoop-hdfs/lib/jsr305-3.0.0.jar:/usr/hdp/2.3.2.0-2950/hadoop-hdfs/lib/xmlenc-0.52.jar:/usr/hdp/2.3.2.0-2950/hadoop-hdfs/lib/jersey-core-1.9.jar:/usr/hdp/2.3.2.0-2950/hadoop-hdfs/lib/jackson-core-asl-1.9.13.jar:/usr/hdp/2.3.2.0-2950/hadoop-hdfs/lib/netty-all-4.0.23.Final.jar:/usr/hdp/2.3.2.0-2950/hadoop-hdfs/lib/netty-3.6.2.Final.jar:/usr/hdp/2.3.2.0-2950/hadoop-hdfs/lib/commons-logging-1.1.3.jar:/usr/hdp/2.3.2.0-2950/hadoop-hdfs/lib/xercesImpl-2.9.1.jar:/usr/hdp/2.3.2.0-2950/hadoop-hdfs/lib/okio-1.4.0.jar:/usr/hdp/2.3.2.0-2950/hadoop-hdfs/lib/xml-apis-1.3.04.jar:/usr/hdp/2.3.2.0-2950/hadoop-hdfs/lib/jersey-server-1.9.jar:/usr/hdp/2.3.2.0-2950/hadoop-hdfs/lib/okhttp-2.4.0.jar:/usr/hdp/2.3.2.0-2950/hadoop-hdfs/lib/jetty-util-6.1.26.hwx.jar:/usr/hdp/2.3.2.0-2950/hadoop-hdfs/lib/commons-cli-1.2.jar:/usr/hdp/2.3.2.0-2950/hadoop-hdfs/lib/servlet-api-2.5.jar:/usr/hdp/2.3.2.0-2950/hadoop-hdfs/.//hadoop-hdfs-2.7.1.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hadoop-hdfs/.//hadoop-hdfs-2.7.1.2.3.2.0-2950-tests.jar:/usr/hdp/2.3.2.0-2950/hadoop-hdfs/.//hadoop-hdfs-nfs.jar:/usr/hdp/2.3.2.0-2950/hadoop-hdfs/.//hadoop-hdfs-nfs-2.7.1.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hadoop-hdfs/.//hadoop-hdfs.jar:/usr/hdp/2.3.2.0-2950/hadoop-hdfs/.//hadoop-hdfs-tests.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/commons-io-2.4.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/jettison-1.1.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/zookeeper-3.4.6.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/commons-codec-1.4.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/api-util-1.0.0-M20.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/jackson-xc-1.9.13.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/xz-1.0.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/api-asn1-api-1.0.0-M20.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/commons-beanutils-1.7.0.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/commons-beanutils-core-1.8.0.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/java-xmlbuilder-0.4.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/javassist-3.18.1-GA.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/protobuf-java-2.5.0.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/commons-httpclient-3.1.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/jackson-mapper-asl-1.9.13.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/httpcore-4.2.5.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/jsch-0.1.42.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/jsp-api-2.1.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/commons-collections-3.2.1.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/snappy-java-1.0.4.1.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/log4j-1.2.17.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/jets3t-0.9.0.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/activation-1.1.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/jersey-guice-1.9.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/htrace-core-3.1.0-incubating.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/curator-recipes-2.7.1.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/curator-client-2.7.1.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/leveldbjni-all-1.8.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/guice-servlet-3.0.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/guava-11.0.2.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/httpclient-4.2.5.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/commons-lang-2.6.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/jetty-6.1.26.hwx.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/asm-3.2.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/jersey-client-1.9.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/jaxb-impl-2.2.3-1.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/objenesis-2.1.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/guice-3.0.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/jsr305-3.0.0.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/xmlenc-0.52.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/stax-api-1.0-2.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/jersey-json-1.9.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/jersey-core-1.9.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/mysql-connector-java.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/jackson-core-asl-1.9.13.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/commons-digester-1.8.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/jackson-jaxrs-1.9.13.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/paranamer-2.3.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/netty-3.6.2.Final.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/commons-logging-1.1.3.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/fst-2.24.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/avro-1.7.4.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/gson-2.2.4.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/zookeeper-3.4.6.2.3.2.0-2950-tests.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/microsoft-windowsazure-storage-sdk-0.6.0.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/jaxb-api-2.2.2.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/commons-math3-3.1.1.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/curator-framework-2.7.1.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/apacheds-kerberos-codec-2.0.0-M15.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/commons-net-3.1.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/jersey-server-1.9.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/commons-configuration-1.6.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/jetty-util-6.1.26.hwx.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/commons-cli-1.2.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/javax.inject-1.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/apacheds-i18n-2.0.0-M15.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/commons-compress-1.4.1.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/aopalliance-1.0.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/jackson-core-2.2.3.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/servlet-api-2.5.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/.//hadoop-yarn-server-timeline-plugins.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/.//hadoop-yarn-client.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/.//hadoop-yarn-server-resourcemanager.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/.//hadoop-yarn-server-web-proxy-2.7.1.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/.//hadoop-yarn-registry-2.7.1.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/.//hadoop-yarn-api.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/.//hadoop-yarn-registry.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/.//hadoop-yarn-api-2.7.1.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/.//hadoop-yarn-applications-unmanaged-am-launcher-2.7.1.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/.//hadoop-yarn-server-common-2.7.1.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/.//hadoop-yarn-server-nodemanager-2.7.1.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/.//hadoop-yarn-client-2.7.1.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/.//hadoop-yarn-server-common.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/.//hadoop-yarn-server-sharedcachemanager.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/.//hadoop-yarn-common.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/.//hadoop-yarn-server-resourcemanager-2.7.1.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/.//hadoop-yarn-applications-unmanaged-am-launcher.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/.//hadoop-yarn-common-2.7.1.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/.//hadoop-yarn-server-applicationhistoryservice-2.7.1.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/.//hadoop-yarn-server-timeline-plugins-2.7.1.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/.//hadoop-yarn-server-tests-2.7.1.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/.//hadoop-yarn-server-applicationhistoryservice.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/.//hadoop-yarn-server-tests.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/.//hadoop-yarn-applications-distributedshell-2.7.1.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/.//hadoop-yarn-server-web-proxy.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/.//hadoop-yarn-server-sharedcachemanager-2.7.1.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/.//hadoop-yarn-server-nodemanager.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/.//hadoop-yarn-applications-distributedshell.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/lib/commons-io-2.4.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/lib/xz-1.0.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/lib/protobuf-java-2.5.0.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/lib/jackson-mapper-asl-1.9.13.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/lib/hamcrest-core-1.3.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/lib/snappy-java-1.0.4.1.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/lib/log4j-1.2.17.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/lib/jersey-guice-1.9.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/lib/leveldbjni-all-1.8.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/lib/guice-servlet-3.0.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/lib/asm-3.2.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/lib/guice-3.0.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/lib/jersey-core-1.9.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/lib/jackson-core-asl-1.9.13.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/lib/paranamer-2.3.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/lib/netty-3.6.2.Final.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/lib/avro-1.7.4.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/lib/junit-4.11.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/lib/jersey-server-1.9.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/lib/javax.inject-1.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/lib/commons-compress-1.4.1.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/lib/aopalliance-1.0.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//commons-io-2.4.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//jettison-1.1.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//zookeeper-3.4.6.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//commons-codec-1.4.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//hadoop-mapreduce-client-shuffle-2.7.1.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//api-util-1.0.0-M20.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//jackson-xc-1.9.13.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//xz-1.0.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//api-asn1-api-1.0.0-M20.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//commons-beanutils-1.7.0.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//commons-beanutils-core-1.8.0.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//java-xmlbuilder-0.4.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//protobuf-java-2.5.0.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//hadoop-extras-2.7.1.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//commons-httpclient-3.1.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//jackson-mapper-asl-1.9.13.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//hamcrest-core-1.3.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//httpcore-4.2.5.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//hadoop-distcp-2.7.1.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//jsch-0.1.42.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//hadoop-gridmix-2.7.1.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//jsp-api-2.1.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//metrics-core-3.0.1.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//commons-collections-3.2.1.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//hadoop-openstack.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//hadoop-mapreduce-client-jobclient-2.7.1.2.3.2.0-2950-tests.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//hadoop-archives-2.7.1.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//snappy-java-1.0.4.1.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//log4j-1.2.17.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//jets3t-0.9.0.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//hadoop-datajoin-2.7.1.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//activation-1.1.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//hadoop-mapreduce-client-core.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//htrace-core-3.1.0-incubating.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//hadoop-sls.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//curator-recipes-2.7.1.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//curator-client-2.7.1.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//hadoop-auth-2.7.1.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//guava-11.0.2.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//httpclient-4.2.5.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//commons-lang-2.6.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//hadoop-mapreduce-examples.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//jetty-6.1.26.hwx.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//asm-3.2.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//hadoop-mapreduce-client-app-2.7.1.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//hadoop-rumen.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//jaxb-impl-2.2.3-1.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//jsr305-3.0.0.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//hadoop-mapreduce-client-jobclient-2.7.1.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//hadoop-mapreduce-client-hs.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//hadoop-mapreduce-client-jobclient-tests.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//xmlenc-0.52.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//stax-api-1.0-2.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//jersey-json-1.9.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//hadoop-ant-2.7.1.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//jersey-core-1.9.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//hadoop-datajoin.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//jackson-core-asl-1.9.13.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//hadoop-mapreduce-client-shuffle.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//commons-digester-1.8.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//joda-time-2.8.2.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//hadoop-mapreduce-client-hs-plugins.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//jackson-jaxrs-1.9.13.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//commons-lang3-3.3.2.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//paranamer-2.3.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//netty-3.6.2.Final.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//commons-logging-1.1.3.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//avro-1.7.4.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//gson-2.2.4.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//hadoop-openstack-2.7.1.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//hadoop-streaming.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//junit-4.11.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//microsoft-windowsazure-storage-sdk-0.6.0.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//hadoop-mapreduce-client-hs-plugins-2.7.1.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//jaxb-api-2.2.2.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//hadoop-ant.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//hadoop-mapreduce-client-jobclient.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//hadoop-auth.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//commons-math3-3.1.1.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//hadoop-archives.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//curator-framework-2.7.1.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//apacheds-kerberos-codec-2.0.0-M15.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//hadoop-mapreduce-client-common.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//mockito-all-1.8.5.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//hadoop-gridmix.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//commons-net-3.1.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//hadoop-mapreduce-examples-2.7.1.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//hadoop-sls-2.7.1.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//jersey-server-1.9.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//commons-configuration-1.6.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//hadoop-distcp.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//hadoop-mapreduce-client-hs-2.7.1.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//jetty-util-6.1.26.hwx.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//commons-cli-1.2.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//hadoop-mapreduce-client-core-2.7.1.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//hadoop-streaming-2.7.1.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//apacheds-i18n-2.0.0-M15.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//commons-compress-1.4.1.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//hadoop-mapreduce-client-common-2.7.1.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//hadoop-extras.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//jackson-core-2.2.3.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//hadoop-mapreduce-client-app.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//hadoop-rumen-2.7.1.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//servlet-api-2.5.jar:::/usr/share/java/mysql-connector-java-5.1.17.jar:/usr/share/java/mysql-connector-java-5.1.31-bin.jar:/usr/share/java/mysql-connector-java.jar:/usr/hdp/2.3.2.0-2950/tez/tez-common-0.7.0.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/tez/tez-examples-0.7.0.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/tez/tez-mapreduce-0.7.0.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/tez/tez-yarn-timeline-history-with-acls-0.7.0.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/tez/tez-runtime-internals-0.7.0.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/tez/tez-api-0.7.0.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/tez/tez-history-parser-0.7.0.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/tez/tez-yarn-timeline-history-0.7.0.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/tez/tez-tests-0.7.0.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/tez/tez-runtime-library-0.7.0.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/tez/tez-dag-0.7.0.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/tez/lib/commons-io-2.4.jar:/usr/hdp/2.3.2.0-2950/tez/lib/commons-codec-1.4.jar:/usr/hdp/2.3.2.0-2950/tez/lib/protobuf-java-2.5.0.jar:/usr/hdp/2.3.2.0-2950/tez/lib/hadoop-yarn-server-web-proxy-2.7.1.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/tez/lib/commons-collections4-4.0.jar:/usr/hdp/2.3.2.0-2950/tez/lib/commons-collections-3.2.1.jar:/usr/hdp/2.3.2.0-2950/tez/lib/jettison-1.3.4.jar:/usr/hdp/2.3.2.0-2950/tez/lib/slf4j-api-1.7.5.jar:/usr/hdp/2.3.2.0-2950/tez/lib/guava-11.0.2.jar:/usr/hdp/2.3.2.0-2950/tez/lib/commons-lang-2.6.jar:/usr/hdp/2.3.2.0-2950/tez/lib/jetty-6.1.26.hwx.jar:/usr/hdp/2.3.2.0-2950/tez/lib/jersey-client-1.9.jar:/usr/hdp/2.3.2.0-2950/tez/lib/hadoop-aws-2.7.1.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/tez/lib/jersey-json-1.9.jar:/usr/hdp/2.3.2.0-2950/tez/lib/hadoop-azure-2.7.1.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/tez/lib/commons-math3-3.1.1.jar:/usr/hdp/2.3.2.0-2950/tez/lib/hadoop-annotations-2.7.1.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/tez/lib/jsr305-2.0.3.jar:/usr/hdp/2.3.2.0-2950/tez/lib/jetty-util-6.1.26.hwx.jar:/usr/hdp/2.3.2.0-2950/tez/lib/commons-cli-1.2.jar:/usr/hdp/2.3.2.0-2950/tez/lib/hadoop-mapreduce-client-core-2.7.1.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/tez/lib/hadoop-mapreduce-client-common-2.7.1.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/tez/lib/servlet-api-2.5.jar:/usr/hdp/2.3.2.0-2950/tez/conf:/usr/hdp/2.3.2.0-2950/hadoop/conf:/usr/hdp/2.3.2.0-2950/hadoop/hadoop-nfs-2.7.1.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hadoop/hadoop-common.jar:/usr/hdp/2.3.2.0-2950/hadoop/hadoop-auth-2.7.1.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hadoop/hadoop-aws-2.7.1.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hadoop/hadoop-common-2.7.1.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hadoop/hadoop-azure-2.7.1.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hadoop/hadoop-common-tests.jar:/usr/hdp/2.3.2.0-2950/hadoop/hadoop-annotations.jar:/usr/hdp/2.3.2.0-2950/hadoop/hadoop-azure.jar:/usr/hdp/2.3.2.0-2950/hadoop/hadoop-aws.jar:/usr/hdp/2.3.2.0-2950/hadoop/hadoop-auth.jar:/usr/hdp/2.3.2.0-2950/hadoop/hadoop-annotations-2.7.1.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hadoop/hadoop-common-2.7.1.2.3.2.0-2950-tests.jar:/usr/hdp/2.3.2.0-2950/hadoop/hadoop-nfs.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/commons-io-2.4.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/azure-storage-2.2.0.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/jettison-1.1.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/ranger-plugins-audit-0.5.0.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/zookeeper-3.4.6.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/commons-codec-1.4.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/api-util-1.0.0-M20.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/jackson-xc-1.9.13.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/xz-1.0.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/noggit-0.6.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/api-asn1-api-1.0.0-M20.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/commons-beanutils-1.7.0.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/commons-beanutils-core-1.8.0.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/java-xmlbuilder-0.4.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/protobuf-java-2.5.0.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/commons-httpclient-3.1.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/jackson-annotations-2.2.3.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/jackson-mapper-asl-1.9.13.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/hamcrest-core-1.3.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/httpcore-4.2.5.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/ranger-plugins-common-0.5.0.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/javax.persistence-2.1.0.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/jsch-0.1.42.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/jsp-api-2.1.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/commons-collections-3.2.1.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/snappy-java-1.0.4.1.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/log4j-1.2.17.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/jets3t-0.9.0.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/slf4j-log4j12-1.7.10.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/activation-1.1.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/htrace-core-3.1.0-incubating.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/curator-recipes-2.7.1.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/curator-client-2.7.1.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/guava-11.0.2.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/httpclient-4.2.5.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/commons-lang-2.6.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/jetty-6.1.26.hwx.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/asm-3.2.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/eclipselink-2.5.2-M1.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/jaxb-impl-2.2.3-1.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/jackson-databind-2.2.3.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/jsr305-3.0.0.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/xmlenc-0.52.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/stax-api-1.0-2.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/jersey-json-1.9.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/jersey-core-1.9.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/mysql-connector-java.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/hadoop-common-2.7.1.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/jackson-core-asl-1.9.13.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/commons-digester-1.8.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/jackson-jaxrs-1.9.13.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/paranamer-2.3.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/netty-3.6.2.Final.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/slf4j-api-1.7.10.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/commons-logging-1.1.3.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/avro-1.7.4.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/gson-2.2.4.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/ranger-plugins-cred-0.5.0.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/junit-4.11.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/microsoft-windowsazure-storage-sdk-0.6.0.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/ranger-hdfs-plugin-0.5.0.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/jaxb-api-2.2.2.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/httpmime-4.2.5.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/commons-math3-3.1.1.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/curator-framework-2.7.1.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/apacheds-kerberos-codec-2.0.0-M15.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/mockito-all-1.8.5.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/ranger-yarn-plugin-0.5.0.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/commons-net-3.1.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/aws-java-sdk-1.7.4.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/ojdbc6.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/jersey-server-1.9.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/commons-configuration-1.6.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/ranger_solrj-0.5.0.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/jetty-util-6.1.26.hwx.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/commons-cli-1.2.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/apacheds-i18n-2.0.0-M15.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/commons-compress-1.4.1.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/jackson-core-2.2.3.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/servlet-api-2.5.jar:/usr/hdp/2.3.2.0-2950/zookeeper/zookeeper-3.4.6.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/zookeeper/zookeeper.jar:/usr/hdp/2.3.2.0-2950/zookeeper/lib/maven-artifact-manager-2.2.1.jar:/usr/hdp/2.3.2.0-2950/zookeeper/lib/wagon-http-2.4.jar:/usr/hdp/2.3.2.0-2950/zookeeper/lib/slf4j-log4j12-1.6.1.jar:/usr/hdp/2.3.2.0-2950/zookeeper/lib/xercesMinimal-1.9.6.2.jar:/usr/hdp/2.3.2.0-2950/zookeeper/lib/maven-profile-2.2.1.jar:/usr/hdp/2.3.2.0-2950/zookeeper/lib/maven-repository-metadata-2.2.1.jar:/usr/hdp/2.3.2.0-2950/zookeeper/lib/httpclient-4.2.3.jar:/usr/hdp/2.3.2.0-2950/zookeeper/lib/ant-launcher-1.8.0.jar:/usr/hdp/2.3.2.0-2950/zookeeper/lib/jsoup-1.7.1.jar:/usr/hdp/2.3.2.0-2950/zookeeper/lib/wagon-file-1.0-beta-6.jar:/usr/hdp/2.3.2.0-2950/zookeeper/lib/commons-io-2.2.jar:/usr/hdp/2.3.2.0-2950/zookeeper/lib/wagon-http-shared4-2.4.jar:/usr/hdp/2.3.2.0-2950/zookeeper/lib/jline-0.9.94.jar:/usr/hdp/2.3.2.0-2950/zookeeper/lib/ant-1.8.0.jar:/usr/hdp/2.3.2.0-2950/zookeeper/lib/wagon-provider-api-2.4.jar:/usr/hdp/2.3.2.0-2950/zookeeper/lib/maven-ant-tasks-2.1.3.jar:/usr/hdp/2.3.2.0-2950/zookeeper/lib/nekohtml-1.9.6.2.jar:/usr/hdp/2.3.2.0-2950/zookeeper/lib/commons-codec-1.6.jar:/usr/hdp/2.3.2.0-2950/zookeeper/lib/maven-error-diagnostics-2.2.1.jar:/usr/hdp/2.3.2.0-2950/zookeeper/lib/backport-util-concurrent-3.1.jar:/usr/hdp/2.3.2.0-2950/zookeeper/lib/log4j-1.2.16.jar:/usr/hdp/2.3.2.0-2950/zookeeper/lib/plexus-interpolation-1.11.jar:/usr/hdp/2.3.2.0-2950/zookeeper/lib/plexus-container-default-1.0-alpha-9-stable-1.jar:/usr/hdp/2.3.2.0-2950/zookeeper/lib/plexus-utils-3.0.8.jar:/usr/hdp/2.3.2.0-2950/zookeeper/lib/slf4j-api-1.6.1.jar:/usr/hdp/2.3.2.0-2950/zookeeper/lib/httpcore-4.2.3.jar:/usr/hdp/2.3.2.0-2950/zookeeper/lib/maven-model-2.2.1.jar:/usr/hdp/2.3.2.0-2950/zookeeper/lib/maven-project-2.2.1.jar:/usr/hdp/2.3.2.0-2950/zookeeper/lib/wagon-http-lightweight-1.0-beta-6.jar:/usr/hdp/2.3.2.0-2950/zookeeper/lib/wagon-http-shared-1.0-beta-6.jar:/usr/hdp/2.3.2.0-2950/zookeeper/lib/maven-settings-2.2.1.jar:/usr/hdp/2.3.2.0-2950/zookeeper/lib/maven-artifact-2.2.1.jar:/usr/hdp/2.3.2.0-2950/zookeeper/lib/commons-logging-1.1.1.jar:/usr/hdp/2.3.2.0-2950/zookeeper/lib/netty-3.7.0.Final.jar:/usr/hdp/2.3.2.0-2950/zookeeper/lib/classworlds-1.1-alpha-2.jar:/usr/hdp/2.3.2.0-2950/zookeeper/lib/maven-plugin-registry-2.2.1.jar::/usr/hdp/2.3.2.0-2950/atlas/hook/hive/scala-compiler-2.10.4.jar:/usr/hdp/2.3.2.0-2950/atlas/hook/hive/atlas-typesystem-0.5.0.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/atlas/hook/hive/scala-reflect-2.10.4.jar:/usr/hdp/2.3.2.0-2950/atlas/hook/hive/scalap-2.10.4.jar:/usr/hdp/2.3.2.0-2950/atlas/hook/hive/atlas-client-0.5.0.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/atlas/hook/hive/json4s-core_2.10-3.2.11.jar:/usr/hdp/2.3.2.0-2950/atlas/hook/hive/hive-bridge-0.5.0.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/atlas/hook/hive/json4s-native_2.10-3.2.11.jar:/usr/hdp/2.3.2.0-2950/atlas/hook/hive/json4s-ast_2.10-3.2.11.jar:/usr/hdp/2.3.2.0-2950/atlas/hook/hive/scala-library-2.10.4.jar:/usr/hdp/2.3.2.0-2950/hive/lib/accumulo-core-1.7.0.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hive/lib/accumulo-fate-1.7.0.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hive/lib/accumulo-start-1.7.0.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hive/lib/accumulo-trace-1.7.0.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hive/lib/activation-1.1.jar:/usr/hdp/2.3.2.0-2950/hive/lib/ant-1.9.1.jar:/usr/hdp/2.3.2.0-2950/hive/lib/ant-launcher-1.9.1.jar:/usr/hdp/2.3.2.0-2950/hive/lib/antlr-2.7.7.jar:/usr/hdp/2.3.2.0-2950/hive/lib/antlr-runtime-3.4.jar:/usr/hdp/2.3.2.0-2950/hive/lib/apache-log4j-extras-1.2.17.jar:/usr/hdp/2.3.2.0-2950/hive/lib/asm-commons-3.1.jar:/usr/hdp/2.3.2.0-2950/hive/lib/asm-tree-3.1.jar:/usr/hdp/2.3.2.0-2950/hive/lib/avro-1.7.5.jar:/usr/hdp/2.3.2.0-2950/hive/lib/bonecp-0.8.0.RELEASE.jar:/usr/hdp/2.3.2.0-2950/hive/lib/calcite-avatica-1.2.0.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hive/lib/calcite-core-1.2.0.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hive/lib/calcite-linq4j-1.2.0.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hive/lib/commons-cli-1.2.jar:/usr/hdp/2.3.2.0-2950/hive/lib/commons-codec-1.4.jar:/usr/hdp/2.3.2.0-2950/hive/lib/commons-collections-3.2.1.jar:/usr/hdp/2.3.2.0-2950/hive/lib/commons-compiler-2.7.6.jar:/usr/hdp/2.3.2.0-2950/hive/lib/commons-compress-1.4.1.jar:/usr/hdp/2.3.2.0-2950/hive/lib/commons-dbcp-1.4.jar:/usr/hdp/2.3.2.0-2950/hive/lib/commons-httpclient-3.0.1.jar:/usr/hdp/2.3.2.0-2950/hive/lib/commons-io-2.4.jar:/usr/hdp/2.3.2.0-2950/hive/lib/commons-lang-2.6.jar:/usr/hdp/2.3.2.0-2950/hive/lib/commons-logging-1.1.3.jar:/usr/hdp/2.3.2.0-2950/hive/lib/commons-math-2.1.jar:/usr/hdp/2.3.2.0-2950/hive/lib/commons-pool-1.5.4.jar:/usr/hdp/2.3.2.0-2950/hive/lib/commons-vfs2-2.0.jar:/usr/hdp/2.3.2.0-2950/hive/lib/curator-client-2.6.0.jar:/usr/hdp/2.3.2.0-2950/hive/lib/curator-framework-2.6.0.jar:/usr/hdp/2.3.2.0-2950/hive/lib/curator-recipes-2.6.0.jar:/usr/hdp/2.3.2.0-2950/hive/lib/datanucleus-api-jdo-3.2.6.jar:/usr/hdp/2.3.2.0-2950/hive/lib/datanucleus-core-3.2.10.jar:/usr/hdp/2.3.2.0-2950/hive/lib/datanucleus-rdbms-3.2.9.jar:/usr/hdp/2.3.2.0-2950/hive/lib/derby-10.10.2.0.jar:/usr/hdp/2.3.2.0-2950/hive/lib/eclipselink-2.5.2-M1.jar:/usr/hdp/2.3.2.0-2950/hive/lib/eigenbase-properties-1.1.5.jar:/usr/hdp/2.3.2.0-2950/hive/lib/geronimo-annotation_1.0_spec-1.1.1.jar:/usr/hdp/2.3.2.0-2950/hive/lib/geronimo-jaspic_1.0_spec-1.0.jar:/usr/hdp/2.3.2.0-2950/hive/lib/geronimo-jta_1.1_spec-1.1.1.jar:/usr/hdp/2.3.2.0-2950/hive/lib/groovy-all-2.1.6.jar:/usr/hdp/2.3.2.0-2950/hive/lib/gson-2.2.4.jar:/usr/hdp/2.3.2.0-2950/hive/lib/guava-14.0.1.jar:/usr/hdp/2.3.2.0-2950/hive/lib/hamcrest-core-1.1.jar:/usr/hdp/2.3.2.0-2950/hive/lib/hive-accumulo-handler-1.2.1.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hive/lib/hive-accumulo-handler.jar:/usr/hdp/2.3.2.0-2950/hive/lib/hive-ant-1.2.1.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hive/lib/hive-ant.jar:/usr/hdp/2.3.2.0-2950/hive/lib/hive-beeline-1.2.1.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hive/lib/hive-beeline.jar:/usr/hdp/2.3.2.0-2950/hive/lib/hive-cli-1.2.1.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hive/lib/hive-cli.jar:/usr/hdp/2.3.2.0-2950/hive/lib/hive-common-1.2.1.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hive/lib/hive-common.jar:/usr/hdp/2.3.2.0-2950/hive/lib/hive-contrib-1.2.1.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hive/lib/hive-contrib.jar:/usr/hdp/2.3.2.0-2950/hive/lib/hive-exec-1.2.1.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hive/lib/hive-exec.jar:/usr/hdp/2.3.2.0-2950/hive/lib/hive-hbase-handler-1.2.1.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hive/lib/hive-hbase-handler.jar:/usr/hdp/2.3.2.0-2950/hive/lib/hive-hwi-1.2.1.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hive/lib/hive-hwi.jar:/usr/hdp/2.3.2.0-2950/hive/lib/hive-jdbc-1.2.1.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hive/lib/hive-jdbc-1.2.1.2.3.2.0-2950-standalone.jar:/usr/hdp/2.3.2.0-2950/hive/lib/hive-jdbc.jar:/usr/hdp/2.3.2.0-2950/hive/lib/hive-metastore-1.2.1.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hive/lib/hive-metastore.jar:/usr/hdp/2.3.2.0-2950/hive/lib/hive-serde-1.2.1.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hive/lib/hive-serde.jar:/usr/hdp/2.3.2.0-2950/hive/lib/hive-service-1.2.1.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hive/lib/hive-service.jar:/usr/hdp/2.3.2.0-2950/hive/lib/hive-shims-0.20S-1.2.1.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hive/lib/hive-shims-0.23-1.2.1.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hive/lib/hive-shims-1.2.1.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hive/lib/hive-shims-common-1.2.1.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hive/lib/hive-shims-common.jar:/usr/hdp/2.3.2.0-2950/hive/lib/hive-shims.jar:/usr/hdp/2.3.2.0-2950/hive/lib/hive-shims-scheduler-1.2.1.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hive/lib/hive-shims-scheduler.jar:/usr/hdp/2.3.2.0-2950/hive/lib/hive-testutils-1.2.1.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hive/lib/hive-testutils.jar:/usr/hdp/2.3.2.0-2950/hive/lib/htrace-core-3.1.0-incubating.jar:/usr/hdp/2.3.2.0-2950/hive/lib/httpclient-4.4.jar:/usr/hdp/2.3.2.0-2950/hive/lib/httpcore-4.4.jar:/usr/hdp/2.3.2.0-2950/hive/lib/httpmime-4.2.5.jar:/usr/hdp/2.3.2.0-2950/hive/lib/ivy-2.4.0.jar:/usr/hdp/2.3.2.0-2950/hive/lib/janino-2.7.6.jar:/usr/hdp/2.3.2.0-2950/hive/lib/javax.persistence-2.1.0.jar:/usr/hdp/2.3.2.0-2950/hive/lib/jcommander-1.32.jar:/usr/hdp/2.3.2.0-2950/hive/lib/jdo-api-3.0.1.jar:/usr/hdp/2.3.2.0-2950/hive/lib/jetty-all-7.6.0.v20120127.jar:/usr/hdp/2.3.2.0-2950/hive/lib/jetty-all-server-7.6.0.v20120127.jar:/usr/hdp/2.3.2.0-2950/hive/lib/jline-2.12.jar:/usr/hdp/2.3.2.0-2950/hive/lib/joda-time-2.5.jar:/usr/hdp/2.3.2.0-2950/hive/lib/jpam-1.1.jar:/usr/hdp/2.3.2.0-2950/hive/lib/json-20090211.jar:/usr/hdp/2.3.2.0-2950/hive/lib/jsr305-3.0.0.jar:/usr/hdp/2.3.2.0-2950/hive/lib/jta-1.1.jar:/usr/hdp/2.3.2.0-2950/hive/lib/junit-4.11.jar:/usr/hdp/2.3.2.0-2950/hive/lib/libfb303-0.9.2.jar:/usr/hdp/2.3.2.0-2950/hive/lib/libthrift-0.9.2.jar:/usr/hdp/2.3.2.0-2950/hive/lib/log4j-1.2.16.jar:/usr/hdp/2.3.2.0-2950/hive/lib/mail-1.4.1.jar:/usr/hdp/2.3.2.0-2950/hive/lib/maven-scm-api-1.4.jar:/usr/hdp/2.3.2.0-2950/hive/lib/maven-scm-provider-svn-commons-1.4.jar:/usr/hdp/2.3.2.0-2950/hive/lib/maven-scm-provider-svnexe-1.4.jar:/usr/hdp/2.3.2.0-2950/hive/lib/mysql-connector-java.jar:/usr/hdp/2.3.2.0-2950/hive/lib/netty-3.7.0.Final.jar:/usr/hdp/2.3.2.0-2950/hive/lib/noggit-0.6.jar:/usr/hdp/2.3.2.0-2950/hive/lib/ojdbc6.jar:/usr/hdp/2.3.2.0-2950/hive/lib/opencsv-2.3.jar:/usr/hdp/2.3.2.0-2950/hive/lib/oro-2.0.8.jar:/usr/hdp/2.3.2.0-2950/hive/lib/paranamer-2.3.jar:/usr/hdp/2.3.2.0-2950/hive/lib/parquet-hadoop-bundle-1.6.0.jar:/usr/hdp/2.3.2.0-2950/hive/lib/pentaho-aggdesigner-algorithm-5.1.5-jhyde.jar:/usr/hdp/2.3.2.0-2950/hive/lib/plexus-utils-1.5.6.jar:/usr/hdp/2.3.2.0-2950/hive/lib/ranger-hive-plugin-0.5.0.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hive/lib/ranger-plugins-audit-0.5.0.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hive/lib/ranger-plugins-common-0.5.0.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hive/lib/ranger-plugins-cred-0.5.0.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hive/lib/ranger_solrj-0.5.0.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hive/lib/regexp-1.3.jar:/usr/hdp/2.3.2.0-2950/hive/lib/servlet-api-2.5.jar:/usr/hdp/2.3.2.0-2950/hive/lib/snappy-java-1.0.5.jar:/usr/hdp/2.3.2.0-2950/hive/lib/ST4-4.0.4.jar:/usr/hdp/2.3.2.0-2950/hive/lib/stax-api-1.0.1.jar:/usr/hdp/2.3.2.0-2950/hive/lib/stringtemplate-3.2.1.jar:/usr/hdp/2.3.2.0-2950/hive/lib/super-csv-2.2.0.jar:/usr/hdp/2.3.2.0-2950/hive/lib/tempus-fugit-1.1.jar:/usr/hdp/2.3.2.0-2950/hive/lib/velocity-1.5.jar:/usr/hdp/2.3.2.0-2950/hive/lib/xz-1.0.jar:/usr/hdp/2.3.2.0-2950/hive/lib/zookeeper-3.4.6.2.3.2.0-2950.jar::/usr/hdp/2.3.2.0-2950/hive-hcatalog/libexec/../share/hcatalog/hive-hcatalog-core-1.2.1.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hive/conf::/usr/hdp/2.3.2.0-2950/hbase/lib/netty-3.2.4.Final.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/commons-io-2.4.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/ranger-plugins-audit-0.5.0.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/hbase-procedure.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/hbase-it.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/api-util-1.0.0-M20.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/commons-daemon-1.0.13.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/jackson-xc-1.9.13.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/xz-1.0.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/hbase-resource-bundle-1.1.2.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/noggit-0.6.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/api-asn1-api-1.0.0-M20.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/commons-beanutils-1.7.0.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/commons-beanutils-core-1.8.0.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/java-xmlbuilder-0.4.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/hbase-hadoop2-compat.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/protobuf-java-2.5.0.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/commons-httpclient-3.1.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/hbase-server.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/hbase-annotations.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/hbase-examples.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/jackson-mapper-asl-1.9.13.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/hbase-hadoop-compat.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/httpcore-4.2.5.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/ranger-plugins-common-0.5.0.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/jsch-0.1.42.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/hbase-rest.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/findbugs-annotations-1.3.9-1.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/hbase-hadoop2-compat-1.1.2.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/commons-collections-3.2.1.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/jcodings-1.0.8.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/hbase-prefix-tree.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/hbase-annotations-1.1.2.2.3.2.0-2950-tests.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/snappy-java-1.0.4.1.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/log4j-1.2.17.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/jets3t-0.9.0.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/jsp-2.1-6.1.14.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/hbase-it-1.1.2.2.3.2.0-2950-tests.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/commons-math-2.2.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/phoenix-server.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/activation-1.1.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/jersey-guice-1.9.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/htrace-core-3.1.0-incubating.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/curator-recipes-2.7.1.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/commons-codec-1.9.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/curator-client-2.7.1.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/leveldbjni-all-1.8.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/guice-servlet-3.0.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/httpclient-4.2.5.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/commons-lang-2.6.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/jetty-6.1.26.hwx.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/jersey-client-1.9.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/ranger-hbase-plugin-0.5.0.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/asm-3.1.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/eclipselink-2.5.2-M1.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/jaxb-impl-2.2.3-1.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/guice-3.0.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/joni-2.1.2.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/hbase-client-1.1.2.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/xmlenc-0.52.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/jersey-json-1.9.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/hbase-shell-1.1.2.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/jersey-core-1.9.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/mysql-connector-java.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/jsr305-1.3.9.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/jackson-core-asl-1.9.13.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/netty-all-4.0.23.Final.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/disruptor-3.3.0.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/commons-digester-1.8.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/hbase-prefix-tree-1.1.2.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/guava-12.0.1.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/spymemcached-2.11.6.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/hbase-resource-bundle.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/jasper-compiler-5.5.23.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/hbase-rest-1.1.2.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/jackson-jaxrs-1.9.13.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/paranamer-2.3.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/hbase-client.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/commons-logging-1.2.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/jetty-sslengine-6.1.26.hwx.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/hbase-server-1.1.2.2.3.2.0-2950-tests.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/hbase-shell.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/avro-1.7.4.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/hbase-examples-1.1.2.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/jruby-complete-1.6.8.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/gson-2.2.4.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/ranger-plugins-cred-0.5.0.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/junit-4.11.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/zookeeper.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/microsoft-windowsazure-storage-sdk-0.6.0.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/jaxb-api-2.2.2.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/slf4j-api-1.7.7.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/xercesImpl-2.9.1.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/hbase-common.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/jamon-runtime-2.3.1.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/hbase-hadoop-compat-1.1.2.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/httpmime-4.2.5.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/okio-1.4.0.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/xml-apis-1.3.04.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/commons-math3-3.1.1.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/curator-framework-2.7.1.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/metrics-core-2.2.0.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/apacheds-kerberos-codec-2.0.0-M15.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/jasper-runtime-5.5.23.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/hbase-server-1.1.2.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/commons-el-1.0.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/commons-net-3.1.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/ojdbc6.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/hbase-it-1.1.2.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/jsp-api-2.1-6.1.14.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/jersey-server-1.9.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/commons-configuration-1.6.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/hbase-common-1.1.2.2.3.2.0-2950-tests.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/hbase-protocol.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/okhttp-2.4.0.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/ranger_solrj-0.5.0.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/jetty-util-6.1.26.hwx.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/jettison-1.3.3.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/commons-cli-1.2.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/hbase-procedure-1.1.2.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/javax.inject-1.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/apacheds-i18n-2.0.0-M15.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/commons-compress-1.4.1.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/aopalliance-1.0.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/jackson-core-2.2.3.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/hbase-common-1.1.2.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/hbase-annotations-1.1.2.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/hbase-protocol-1.1.2.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/servlet-api-2.5.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/servlet-api-2.5-6.1.14.jar:/usr/hdp/2.3.2.0-2950/hbase/conf::/usr/hdp/2.3.2.0-2950//sqoop/sqoop-1.4.6.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950//sqoop/sqoop-test-1.4.6.2.3.2.0-2950.jar:::/usr/share/java/mysql-connector-java-5.1.17.jar:/usr/share/java/mysql-connector-java-5.1.31-bin.jar:/usr/share/java/mysql-connector-java.jar:/usr/hdp/2.3.2.0-2950/tez/tez-common-0.7.0.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/tez/tez-examples-0.7.0.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/tez/tez-mapreduce-0.7.0.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/tez/tez-yarn-timeline-history-with-acls-0.7.0.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/tez/tez-runtime-internals-0.7.0.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/tez/tez-api-0.7.0.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/tez/tez-history-parser-0.7.0.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/tez/tez-yarn-timeline-history-0.7.0.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/tez/tez-tests-0.7.0.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/tez/tez-runtime-library-0.7.0.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/tez/tez-dag-0.7.0.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/tez/lib/commons-io-2.4.jar:/usr/hdp/2.3.2.0-2950/tez/lib/commons-codec-1.4.jar:/usr/hdp/2.3.2.0-2950/tez/lib/protobuf-java-2.5.0.jar:/usr/hdp/2.3.2.0-2950/tez/lib/hadoop-yarn-server-web-proxy-2.7.1.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/tez/lib/commons-collections4-4.0.jar:/usr/hdp/2.3.2.0-2950/tez/lib/commons-collections-3.2.1.jar:/usr/hdp/2.3.2.0-2950/tez/lib/jettison-1.3.4.jar:/usr/hdp/2.3.2.0-2950/tez/lib/slf4j-api-1.7.5.jar:/usr/hdp/2.3.2.0-2950/tez/lib/guava-11.0.2.jar:/usr/hdp/2.3.2.0-2950/tez/lib/commons-lang-2.6.jar:/usr/hdp/2.3.2.0-2950/tez/lib/jetty-6.1.26.hwx.jar:/usr/hdp/2.3.2.0-2950/tez/lib/jersey-client-1.9.jar:/usr/hdp/2.3.2.0-2950/tez/lib/hadoop-aws-2.7.1.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/tez/lib/jersey-json-1.9.jar:/usr/hdp/2.3.2.0-2950/tez/lib/hadoop-azure-2.7.1.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/tez/lib/commons-math3-3.1.1.jar:/usr/hdp/2.3.2.0-2950/tez/lib/hadoop-annotations-2.7.1.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/tez/lib/jsr305-2.0.3.jar:/usr/hdp/2.3.2.0-2950/tez/lib/jetty-util-6.1.26.hwx.jar:/usr/hdp/2.3.2.0-2950/tez/lib/commons-cli-1.2.jar:/usr/hdp/2.3.2.0-2950/tez/lib/hadoop-mapreduce-client-core-2.7.1.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/tez/lib/hadoop-mapreduce-client-common-2.7.1.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/tez/lib/servlet-api-2.5.jar:/usr/hdp/2.3.2.0-2950/tez/conf\n16/01/14 20:26:50 DEBUG orm.CompilationManager: Adding source file: /tmp/sqoop-zeppelin/compile/3d70e59eeb4b9f7850bce766ddf373a4/factsales.java\n16/01/14 20:26:50 DEBUG orm.CompilationManager: Invoking javac with args:\n16/01/14 20:26:50 DEBUG orm.CompilationManager: -sourcepath\n16/01/14 20:26:50 DEBUG orm.CompilationManager: /tmp/sqoop-zeppelin/compile/3d70e59eeb4b9f7850bce766ddf373a4/\n16/01/14 20:26:50 DEBUG orm.CompilationManager: -d\n16/01/14 20:26:50 DEBUG orm.CompilationManager: /tmp/sqoop-zeppelin/compile/3d70e59eeb4b9f7850bce766ddf373a4/\n16/01/14 20:26:50 DEBUG orm.CompilationManager: -classpath\n16/01/14 20:26:50 DEBUG orm.CompilationManager: /usr/hdp/2.3.2.0-2950/hadoop/conf:/usr/hdp/2.3.2.0-2950/hadoop/lib/commons-io-2.4.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/azure-storage-2.2.0.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/jettison-1.1.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/ranger-plugins-audit-0.5.0.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/zookeeper-3.4.6.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/commons-codec-1.4.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/api-util-1.0.0-M20.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/jackson-xc-1.9.13.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/xz-1.0.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/noggit-0.6.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/api-asn1-api-1.0.0-M20.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/commons-beanutils-1.7.0.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/commons-beanutils-core-1.8.0.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/java-xmlbuilder-0.4.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/protobuf-java-2.5.0.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/commons-httpclient-3.1.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/jackson-annotations-2.2.3.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/jackson-mapper-asl-1.9.13.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/hamcrest-core-1.3.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/httpcore-4.2.5.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/ranger-plugins-common-0.5.0.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/javax.persistence-2.1.0.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/jsch-0.1.42.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/jsp-api-2.1.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/commons-collections-3.2.1.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/snappy-java-1.0.4.1.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/log4j-1.2.17.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/jets3t-0.9.0.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/slf4j-log4j12-1.7.10.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/activation-1.1.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/htrace-core-3.1.0-incubating.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/curator-recipes-2.7.1.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/curator-client-2.7.1.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/guava-11.0.2.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/httpclient-4.2.5.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/commons-lang-2.6.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/jetty-6.1.26.hwx.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/asm-3.2.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/eclipselink-2.5.2-M1.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/jaxb-impl-2.2.3-1.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/jackson-databind-2.2.3.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/jsr305-3.0.0.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/xmlenc-0.52.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/stax-api-1.0-2.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/jersey-json-1.9.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/jersey-core-1.9.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/mysql-connector-java.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/hadoop-common-2.7.1.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/jackson-core-asl-1.9.13.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/commons-digester-1.8.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/jackson-jaxrs-1.9.13.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/paranamer-2.3.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/netty-3.6.2.Final.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/slf4j-api-1.7.10.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/commons-logging-1.1.3.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/avro-1.7.4.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/gson-2.2.4.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/ranger-plugins-cred-0.5.0.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/junit-4.11.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/microsoft-windowsazure-storage-sdk-0.6.0.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/ranger-hdfs-plugin-0.5.0.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/jaxb-api-2.2.2.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/httpmime-4.2.5.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/commons-math3-3.1.1.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/curator-framework-2.7.1.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/apacheds-kerberos-codec-2.0.0-M15.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/mockito-all-1.8.5.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/ranger-yarn-plugin-0.5.0.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/commons-net-3.1.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/aws-java-sdk-1.7.4.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/ojdbc6.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/jersey-server-1.9.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/commons-configuration-1.6.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/ranger_solrj-0.5.0.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/jetty-util-6.1.26.hwx.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/commons-cli-1.2.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/apacheds-i18n-2.0.0-M15.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/commons-compress-1.4.1.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/jackson-core-2.2.3.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/servlet-api-2.5.jar:/usr/hdp/2.3.2.0-2950/hadoop/.//hadoop-nfs-2.7.1.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hadoop/.//hadoop-common.jar:/usr/hdp/2.3.2.0-2950/hadoop/.//hadoop-auth-2.7.1.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hadoop/.//hadoop-aws-2.7.1.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hadoop/.//hadoop-common-2.7.1.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hadoop/.//hadoop-azure-2.7.1.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hadoop/.//hadoop-common-tests.jar:/usr/hdp/2.3.2.0-2950/hadoop/.//hadoop-annotations.jar:/usr/hdp/2.3.2.0-2950/hadoop/.//hadoop-azure.jar:/usr/hdp/2.3.2.0-2950/hadoop/.//hadoop-aws.jar:/usr/hdp/2.3.2.0-2950/hadoop/.//hadoop-auth.jar:/usr/hdp/2.3.2.0-2950/hadoop/.//hadoop-annotations-2.7.1.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hadoop/.//hadoop-common-2.7.1.2.3.2.0-2950-tests.jar:/usr/hdp/2.3.2.0-2950/hadoop/.//hadoop-nfs.jar:/usr/hdp/2.3.2.0-2950/hadoop-hdfs/./:/usr/hdp/2.3.2.0-2950/hadoop-hdfs/lib/commons-io-2.4.jar:/usr/hdp/2.3.2.0-2950/hadoop-hdfs/lib/commons-codec-1.4.jar:/usr/hdp/2.3.2.0-2950/hadoop-hdfs/lib/commons-daemon-1.0.13.jar:/usr/hdp/2.3.2.0-2950/hadoop-hdfs/lib/protobuf-java-2.5.0.jar:/usr/hdp/2.3.2.0-2950/hadoop-hdfs/lib/jackson-mapper-asl-1.9.13.jar:/usr/hdp/2.3.2.0-2950/hadoop-hdfs/lib/log4j-1.2.17.jar:/usr/hdp/2.3.2.0-2950/hadoop-hdfs/lib/htrace-core-3.1.0-incubating.jar:/usr/hdp/2.3.2.0-2950/hadoop-hdfs/lib/leveldbjni-all-1.8.jar:/usr/hdp/2.3.2.0-2950/hadoop-hdfs/lib/guava-11.0.2.jar:/usr/hdp/2.3.2.0-2950/hadoop-hdfs/lib/commons-lang-2.6.jar:/usr/hdp/2.3.2.0-2950/hadoop-hdfs/lib/jetty-6.1.26.hwx.jar:/usr/hdp/2.3.2.0-2950/hadoop-hdfs/lib/asm-3.2.jar:/usr/hdp/2.3.2.0-2950/hadoop-hdfs/lib/jsr305-3.0.0.jar:/usr/hdp/2.3.2.0-2950/hadoop-hdfs/lib/xmlenc-0.52.jar:/usr/hdp/2.3.2.0-2950/hadoop-hdfs/lib/jersey-core-1.9.jar:/usr/hdp/2.3.2.0-2950/hadoop-hdfs/lib/jackson-core-asl-1.9.13.jar:/usr/hdp/2.3.2.0-2950/hadoop-hdfs/lib/netty-all-4.0.23.Final.jar:/usr/hdp/2.3.2.0-2950/hadoop-hdfs/lib/netty-3.6.2.Final.jar:/usr/hdp/2.3.2.0-2950/hadoop-hdfs/lib/commons-logging-1.1.3.jar:/usr/hdp/2.3.2.0-2950/hadoop-hdfs/lib/xercesImpl-2.9.1.jar:/usr/hdp/2.3.2.0-2950/hadoop-hdfs/lib/okio-1.4.0.jar:/usr/hdp/2.3.2.0-2950/hadoop-hdfs/lib/xml-apis-1.3.04.jar:/usr/hdp/2.3.2.0-2950/hadoop-hdfs/lib/jersey-server-1.9.jar:/usr/hdp/2.3.2.0-2950/hadoop-hdfs/lib/okhttp-2.4.0.jar:/usr/hdp/2.3.2.0-2950/hadoop-hdfs/lib/jetty-util-6.1.26.hwx.jar:/usr/hdp/2.3.2.0-2950/hadoop-hdfs/lib/commons-cli-1.2.jar:/usr/hdp/2.3.2.0-2950/hadoop-hdfs/lib/servlet-api-2.5.jar:/usr/hdp/2.3.2.0-2950/hadoop-hdfs/.//hadoop-hdfs-2.7.1.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hadoop-hdfs/.//hadoop-hdfs-2.7.1.2.3.2.0-2950-tests.jar:/usr/hdp/2.3.2.0-2950/hadoop-hdfs/.//hadoop-hdfs-nfs.jar:/usr/hdp/2.3.2.0-2950/hadoop-hdfs/.//hadoop-hdfs-nfs-2.7.1.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hadoop-hdfs/.//hadoop-hdfs.jar:/usr/hdp/2.3.2.0-2950/hadoop-hdfs/.//hadoop-hdfs-tests.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/commons-io-2.4.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/jettison-1.1.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/zookeeper-3.4.6.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/commons-codec-1.4.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/api-util-1.0.0-M20.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/jackson-xc-1.9.13.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/xz-1.0.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/api-asn1-api-1.0.0-M20.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/commons-beanutils-1.7.0.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/commons-beanutils-core-1.8.0.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/java-xmlbuilder-0.4.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/javassist-3.18.1-GA.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/protobuf-java-2.5.0.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/commons-httpclient-3.1.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/jackson-mapper-asl-1.9.13.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/httpcore-4.2.5.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/jsch-0.1.42.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/jsp-api-2.1.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/commons-collections-3.2.1.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/snappy-java-1.0.4.1.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/log4j-1.2.17.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/jets3t-0.9.0.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/activation-1.1.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/jersey-guice-1.9.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/htrace-core-3.1.0-incubating.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/curator-recipes-2.7.1.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/curator-client-2.7.1.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/leveldbjni-all-1.8.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/guice-servlet-3.0.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/guava-11.0.2.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/httpclient-4.2.5.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/commons-lang-2.6.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/jetty-6.1.26.hwx.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/asm-3.2.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/jersey-client-1.9.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/jaxb-impl-2.2.3-1.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/objenesis-2.1.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/guice-3.0.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/jsr305-3.0.0.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/xmlenc-0.52.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/stax-api-1.0-2.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/jersey-json-1.9.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/jersey-core-1.9.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/mysql-connector-java.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/jackson-core-asl-1.9.13.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/commons-digester-1.8.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/jackson-jaxrs-1.9.13.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/paranamer-2.3.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/netty-3.6.2.Final.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/commons-logging-1.1.3.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/fst-2.24.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/avro-1.7.4.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/gson-2.2.4.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/zookeeper-3.4.6.2.3.2.0-2950-tests.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/microsoft-windowsazure-storage-sdk-0.6.0.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/jaxb-api-2.2.2.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/commons-math3-3.1.1.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/curator-framework-2.7.1.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/apacheds-kerberos-codec-2.0.0-M15.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/commons-net-3.1.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/jersey-server-1.9.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/commons-configuration-1.6.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/jetty-util-6.1.26.hwx.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/commons-cli-1.2.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/javax.inject-1.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/apacheds-i18n-2.0.0-M15.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/commons-compress-1.4.1.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/aopalliance-1.0.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/jackson-core-2.2.3.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/servlet-api-2.5.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/.//hadoop-yarn-server-timeline-plugins.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/.//hadoop-yarn-client.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/.//hadoop-yarn-server-resourcemanager.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/.//hadoop-yarn-server-web-proxy-2.7.1.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/.//hadoop-yarn-registry-2.7.1.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/.//hadoop-yarn-api.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/.//hadoop-yarn-registry.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/.//hadoop-yarn-api-2.7.1.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/.//hadoop-yarn-applications-unmanaged-am-launcher-2.7.1.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/.//hadoop-yarn-server-common-2.7.1.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/.//hadoop-yarn-server-nodemanager-2.7.1.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/.//hadoop-yarn-client-2.7.1.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/.//hadoop-yarn-server-common.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/.//hadoop-yarn-server-sharedcachemanager.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/.//hadoop-yarn-common.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/.//hadoop-yarn-server-resourcemanager-2.7.1.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/.//hadoop-yarn-applications-unmanaged-am-launcher.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/.//hadoop-yarn-common-2.7.1.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/.//hadoop-yarn-server-applicationhistoryservice-2.7.1.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/.//hadoop-yarn-server-timeline-plugins-2.7.1.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/.//hadoop-yarn-server-tests-2.7.1.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/.//hadoop-yarn-server-applicationhistoryservice.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/.//hadoop-yarn-server-tests.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/.//hadoop-yarn-applications-distributedshell-2.7.1.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/.//hadoop-yarn-server-web-proxy.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/.//hadoop-yarn-server-sharedcachemanager-2.7.1.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/.//hadoop-yarn-server-nodemanager.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/.//hadoop-yarn-applications-distributedshell.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/lib/commons-io-2.4.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/lib/xz-1.0.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/lib/protobuf-java-2.5.0.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/lib/jackson-mapper-asl-1.9.13.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/lib/hamcrest-core-1.3.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/lib/snappy-java-1.0.4.1.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/lib/log4j-1.2.17.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/lib/jersey-guice-1.9.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/lib/leveldbjni-all-1.8.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/lib/guice-servlet-3.0.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/lib/asm-3.2.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/lib/guice-3.0.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/lib/jersey-core-1.9.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/lib/jackson-core-asl-1.9.13.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/lib/paranamer-2.3.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/lib/netty-3.6.2.Final.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/lib/avro-1.7.4.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/lib/junit-4.11.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/lib/jersey-server-1.9.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/lib/javax.inject-1.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/lib/commons-compress-1.4.1.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/lib/aopalliance-1.0.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//commons-io-2.4.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//jettison-1.1.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//zookeeper-3.4.6.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//commons-codec-1.4.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//hadoop-mapreduce-client-shuffle-2.7.1.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//api-util-1.0.0-M20.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//jackson-xc-1.9.13.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//xz-1.0.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//api-asn1-api-1.0.0-M20.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//commons-beanutils-1.7.0.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//commons-beanutils-core-1.8.0.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//java-xmlbuilder-0.4.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//protobuf-java-2.5.0.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//hadoop-extras-2.7.1.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//commons-httpclient-3.1.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//jackson-mapper-asl-1.9.13.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//hamcrest-core-1.3.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//httpcore-4.2.5.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//hadoop-distcp-2.7.1.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//jsch-0.1.42.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//hadoop-gridmix-2.7.1.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//jsp-api-2.1.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//metrics-core-3.0.1.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//commons-collections-3.2.1.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//hadoop-openstack.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//hadoop-mapreduce-client-jobclient-2.7.1.2.3.2.0-2950-tests.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//hadoop-archives-2.7.1.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//snappy-java-1.0.4.1.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//log4j-1.2.17.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//jets3t-0.9.0.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//hadoop-datajoin-2.7.1.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//activation-1.1.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//hadoop-mapreduce-client-core.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//htrace-core-3.1.0-incubating.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//hadoop-sls.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//curator-recipes-2.7.1.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//curator-client-2.7.1.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//hadoop-auth-2.7.1.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//guava-11.0.2.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//httpclient-4.2.5.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//commons-lang-2.6.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//hadoop-mapreduce-examples.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//jetty-6.1.26.hwx.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//asm-3.2.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//hadoop-mapreduce-client-app-2.7.1.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//hadoop-rumen.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//jaxb-impl-2.2.3-1.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//jsr305-3.0.0.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//hadoop-mapreduce-client-jobclient-2.7.1.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//hadoop-mapreduce-client-hs.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//hadoop-mapreduce-client-jobclient-tests.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//xmlenc-0.52.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//stax-api-1.0-2.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//jersey-json-1.9.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//hadoop-ant-2.7.1.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//jersey-core-1.9.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//hadoop-datajoin.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//jackson-core-asl-1.9.13.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//hadoop-mapreduce-client-shuffle.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//commons-digester-1.8.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//joda-time-2.8.2.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//hadoop-mapreduce-client-hs-plugins.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//jackson-jaxrs-1.9.13.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//commons-lang3-3.3.2.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//paranamer-2.3.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//netty-3.6.2.Final.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//commons-logging-1.1.3.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//avro-1.7.4.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//gson-2.2.4.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//hadoop-openstack-2.7.1.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//hadoop-streaming.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//junit-4.11.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//microsoft-windowsazure-storage-sdk-0.6.0.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//hadoop-mapreduce-client-hs-plugins-2.7.1.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//jaxb-api-2.2.2.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//hadoop-ant.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//hadoop-mapreduce-client-jobclient.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//hadoop-auth.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//commons-math3-3.1.1.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//hadoop-archives.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//curator-framework-2.7.1.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//apacheds-kerberos-codec-2.0.0-M15.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//hadoop-mapreduce-client-common.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//mockito-all-1.8.5.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//hadoop-gridmix.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//commons-net-3.1.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//hadoop-mapreduce-examples-2.7.1.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//hadoop-sls-2.7.1.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//jersey-server-1.9.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//commons-configuration-1.6.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//hadoop-distcp.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//hadoop-mapreduce-client-hs-2.7.1.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//jetty-util-6.1.26.hwx.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//commons-cli-1.2.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//hadoop-mapreduce-client-core-2.7.1.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//hadoop-streaming-2.7.1.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//apacheds-i18n-2.0.0-M15.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//commons-compress-1.4.1.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//hadoop-mapreduce-client-common-2.7.1.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//hadoop-extras.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//jackson-core-2.2.3.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//hadoop-mapreduce-client-app.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//hadoop-rumen-2.7.1.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//servlet-api-2.5.jar:/usr/hdp/current/hive-client/lib/libthrift-0.9.2.jar::/usr/hdp/2.3.2.0-2950//sqoop/conf:/etc/zookeeper/conf::/usr/hdp/2.3.2.0-2950//sqoop/lib/ant-contrib-1.0b3.jar:/usr/hdp/2.3.2.0-2950//sqoop/lib/ant-eclipse-1.0-jvm1.2.jar:/usr/hdp/2.3.2.0-2950//sqoop/lib/avro-1.7.5.jar:/usr/hdp/2.3.2.0-2950//sqoop/lib/avro-mapred-1.7.5-hadoop2.jar:/usr/hdp/2.3.2.0-2950//sqoop/lib/commons-codec-1.4.jar:/usr/hdp/2.3.2.0-2950//sqoop/lib/commons-compress-1.4.1.jar:/usr/hdp/2.3.2.0-2950//sqoop/lib/commons-io-1.4.jar:/usr/hdp/2.3.2.0-2950//sqoop/lib/commons-jexl-2.1.1.jar:/usr/hdp/2.3.2.0-2950//sqoop/lib/commons-logging-1.1.1.jar:/usr/hdp/2.3.2.0-2950//sqoop/lib/hsqldb-1.8.0.10.jar:/usr/hdp/2.3.2.0-2950//sqoop/lib/jackson-annotations-2.3.0.jar:/usr/hdp/2.3.2.0-2950//sqoop/lib/jackson-core-2.3.1.jar:/usr/hdp/2.3.2.0-2950//sqoop/lib/jackson-core-asl-1.9.13.jar:/usr/hdp/2.3.2.0-2950//sqoop/lib/jackson-databind-2.3.1.jar:/usr/hdp/2.3.2.0-2950//sqoop/lib/jackson-mapper-asl-1.9.13.jar:/usr/hdp/2.3.2.0-2950//sqoop/lib/kite-data-core-1.0.0.jar:/usr/hdp/2.3.2.0-2950//sqoop/lib/kite-data-hive-1.0.0.jar:/usr/hdp/2.3.2.0-2950//sqoop/lib/kite-data-mapreduce-1.0.0.jar:/usr/hdp/2.3.2.0-2950//sqoop/lib/kite-hadoop-compatibility-1.0.0.jar:/usr/hdp/2.3.2.0-2950//sqoop/lib/mysql-connector-java.jar:/usr/hdp/2.3.2.0-2950//sqoop/lib/opencsv-2.3.jar:/usr/hdp/2.3.2.0-2950//sqoop/lib/paranamer-2.3.jar:/usr/hdp/2.3.2.0-2950//sqoop/lib/parquet-avro-1.4.1.jar:/usr/hdp/2.3.2.0-2950//sqoop/lib/parquet-column-1.4.1.jar:/usr/hdp/2.3.2.0-2950//sqoop/lib/parquet-common-1.4.1.jar:/usr/hdp/2.3.2.0-2950//sqoop/lib/parquet-encoding-1.4.1.jar:/usr/hdp/2.3.2.0-2950//sqoop/lib/parquet-format-2.0.0.jar:/usr/hdp/2.3.2.0-2950//sqoop/lib/parquet-generator-1.4.1.jar:/usr/hdp/2.3.2.0-2950//sqoop/lib/parquet-hadoop-1.4.1.jar:/usr/hdp/2.3.2.0-2950//sqoop/lib/parquet-jackson-1.4.1.jar:/usr/hdp/2.3.2.0-2950//sqoop/lib/postgresql-9.4.1207.jar:/usr/hdp/2.3.2.0-2950//sqoop/lib/slf4j-api-1.6.1.jar:/usr/hdp/2.3.2.0-2950//sqoop/lib/snappy-java-1.0.5.jar:/usr/hdp/2.3.2.0-2950//sqoop/lib/xz-1.0.jar:/usr/hdp/2.3.2.0-2950/hbase/conf:/usr/lib/jvm/java-1.7.0-openjdk-1.7.0.91.x86_64/lib/tools.jar:/usr/hdp/2.3.2.0-2950/hbase:/usr/hdp/2.3.2.0-2950/hbase/lib/activation-1.1.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/aopalliance-1.0.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/apacheds-i18n-2.0.0-M15.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/apacheds-kerberos-codec-2.0.0-M15.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/api-asn1-api-1.0.0-M20.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/api-util-1.0.0-M20.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/asm-3.1.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/avro-1.7.4.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/commons-beanutils-1.7.0.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/commons-beanutils-core-1.8.0.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/commons-cli-1.2.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/commons-codec-1.9.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/commons-collections-3.2.1.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/commons-compress-1.4.1.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/commons-configuration-1.6.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/commons-daemon-1.0.13.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/commons-digester-1.8.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/commons-el-1.0.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/commons-httpclient-3.1.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/commons-io-2.4.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/commons-lang-2.6.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/commons-logging-1.2.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/commons-math-2.2.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/commons-math3-3.1.1.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/commons-net-3.1.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/curator-client-2.7.1.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/curator-framework-2.7.1.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/curator-recipes-2.7.1.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/disruptor-3.3.0.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/eclipselink-2.5.2-M1.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/findbugs-annotations-1.3.9-1.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/gson-2.2.4.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/guava-12.0.1.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/guice-3.0.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/guice-servlet-3.0.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/hbase-annotations-1.1.2.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/hbase-annotations-1.1.2.2.3.2.0-2950-tests.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/hbase-annotations.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/hbase-client-1.1.2.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/hbase-client.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/hbase-common-1.1.2.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/hbase-common-1.1.2.2.3.2.0-2950-tests.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/hbase-common.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/hbase-examples-1.1.2.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/hbase-examples.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/hbase-hadoop2-compat-1.1.2.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/hbase-hadoop2-compat.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/hbase-hadoop-compat-1.1.2.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/hbase-hadoop-compat.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/hbase-it-1.1.2.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/hbase-it-1.1.2.2.3.2.0-2950-tests.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/hbase-it.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/hbase-prefix-tree-1.1.2.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/hbase-prefix-tree.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/hbase-procedure-1.1.2.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/hbase-procedure.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/hbase-protocol-1.1.2.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/hbase-protocol.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/hbase-resource-bundle-1.1.2.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/hbase-resource-bundle.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/hbase-rest-1.1.2.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/hbase-rest.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/hbase-server-1.1.2.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/hbase-server-1.1.2.2.3.2.0-2950-tests.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/hbase-server.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/hbase-shell-1.1.2.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/hbase-shell.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/hbase-thrift-1.1.2.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/hbase-thrift.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/htrace-core-3.1.0-incubating.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/httpclient-4.2.5.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/httpcore-4.2.5.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/httpmime-4.2.5.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/jackson-core-2.2.3.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/jackson-core-asl-1.9.13.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/jackson-jaxrs-1.9.13.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/jackson-mapper-asl-1.9.13.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/jackson-xc-1.9.13.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/jamon-runtime-2.3.1.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/jasper-compiler-5.5.23.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/jasper-runtime-5.5.23.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/javax.inject-1.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/java-xmlbuilder-0.4.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/jaxb-api-2.2.2.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/jaxb-impl-2.2.3-1.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/jcodings-1.0.8.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/jersey-client-1.9.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/jersey-core-1.9.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/jersey-guice-1.9.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/jersey-json-1.9.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/jersey-server-1.9.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/jets3t-0.9.0.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/jettison-1.3.3.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/jetty-6.1.26.hwx.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/jetty-sslengine-6.1.26.hwx.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/jetty-util-6.1.26.hwx.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/joni-2.1.2.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/jruby-complete-1.6.8.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/jsch-0.1.42.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/jsp-2.1-6.1.14.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/jsp-api-2.1-6.1.14.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/jsr305-1.3.9.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/junit-4.11.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/leveldbjni-all-1.8.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/libthrift-0.9.0.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/log4j-1.2.17.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/metrics-core-2.2.0.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/microsoft-windowsazure-storage-sdk-0.6.0.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/mysql-connector-java.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/netty-3.2.4.Final.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/netty-all-4.0.23.Final.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/noggit-0.6.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/ojdbc6.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/okhttp-2.4.0.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/okio-1.4.0.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/paranamer-2.3.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/phoenix-server.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/protobuf-java-2.5.0.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/ranger-hbase-plugin-0.5.0.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/ranger-plugins-audit-0.5.0.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/ranger-plugins-common-0.5.0.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/ranger-plugins-cred-0.5.0.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/ranger_solrj-0.5.0.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/servlet-api-2.5-6.1.14.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/servlet-api-2.5.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/slf4j-api-1.7.7.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/snappy-java-1.0.4.1.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/spymemcached-2.11.6.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/xercesImpl-2.9.1.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/xml-apis-1.3.04.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/xmlenc-0.52.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/xz-1.0.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/zookeeper.jar:/usr/hdp/2.3.2.0-2950/hadoop/conf:/usr/hdp/2.3.2.0-2950/hadoop/lib/commons-io-2.4.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/azure-storage-2.2.0.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/jettison-1.1.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/ranger-plugins-audit-0.5.0.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/zookeeper-3.4.6.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/commons-codec-1.4.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/api-util-1.0.0-M20.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/jackson-xc-1.9.13.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/xz-1.0.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/noggit-0.6.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/api-asn1-api-1.0.0-M20.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/commons-beanutils-1.7.0.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/commons-beanutils-core-1.8.0.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/java-xmlbuilder-0.4.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/protobuf-java-2.5.0.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/commons-httpclient-3.1.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/jackson-annotations-2.2.3.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/jackson-mapper-asl-1.9.13.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/hamcrest-core-1.3.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/httpcore-4.2.5.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/ranger-plugins-common-0.5.0.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/javax.persistence-2.1.0.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/jsch-0.1.42.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/jsp-api-2.1.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/commons-collections-3.2.1.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/snappy-java-1.0.4.1.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/log4j-1.2.17.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/jets3t-0.9.0.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/slf4j-log4j12-1.7.10.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/activation-1.1.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/htrace-core-3.1.0-incubating.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/curator-recipes-2.7.1.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/curator-client-2.7.1.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/guava-11.0.2.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/httpclient-4.2.5.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/commons-lang-2.6.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/jetty-6.1.26.hwx.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/asm-3.2.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/eclipselink-2.5.2-M1.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/jaxb-impl-2.2.3-1.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/jackson-databind-2.2.3.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/jsr305-3.0.0.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/xmlenc-0.52.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/stax-api-1.0-2.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/jersey-json-1.9.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/jersey-core-1.9.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/mysql-connector-java.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/hadoop-common-2.7.1.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/jackson-core-asl-1.9.13.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/commons-digester-1.8.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/jackson-jaxrs-1.9.13.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/paranamer-2.3.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/netty-3.6.2.Final.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/slf4j-api-1.7.10.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/commons-logging-1.1.3.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/avro-1.7.4.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/gson-2.2.4.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/ranger-plugins-cred-0.5.0.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/junit-4.11.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/microsoft-windowsazure-storage-sdk-0.6.0.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/ranger-hdfs-plugin-0.5.0.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/jaxb-api-2.2.2.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/httpmime-4.2.5.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/commons-math3-3.1.1.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/curator-framework-2.7.1.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/apacheds-kerberos-codec-2.0.0-M15.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/mockito-all-1.8.5.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/ranger-yarn-plugin-0.5.0.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/commons-net-3.1.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/aws-java-sdk-1.7.4.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/ojdbc6.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/jersey-server-1.9.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/commons-configuration-1.6.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/ranger_solrj-0.5.0.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/jetty-util-6.1.26.hwx.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/commons-cli-1.2.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/apacheds-i18n-2.0.0-M15.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/commons-compress-1.4.1.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/jackson-core-2.2.3.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/servlet-api-2.5.jar:/usr/hdp/2.3.2.0-2950/hadoop/.//hadoop-nfs-2.7.1.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hadoop/.//hadoop-common.jar:/usr/hdp/2.3.2.0-2950/hadoop/.//hadoop-auth-2.7.1.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hadoop/.//hadoop-aws-2.7.1.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hadoop/.//hadoop-common-2.7.1.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hadoop/.//hadoop-azure-2.7.1.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hadoop/.//hadoop-common-tests.jar:/usr/hdp/2.3.2.0-2950/hadoop/.//hadoop-annotations.jar:/usr/hdp/2.3.2.0-2950/hadoop/.//hadoop-azure.jar:/usr/hdp/2.3.2.0-2950/hadoop/.//hadoop-aws.jar:/usr/hdp/2.3.2.0-2950/hadoop/.//hadoop-auth.jar:/usr/hdp/2.3.2.0-2950/hadoop/.//hadoop-annotations-2.7.1.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hadoop/.//hadoop-common-2.7.1.2.3.2.0-2950-tests.jar:/usr/hdp/2.3.2.0-2950/hadoop/.//hadoop-nfs.jar:/usr/hdp/2.3.2.0-2950/hadoop-hdfs/./:/usr/hdp/2.3.2.0-2950/hadoop-hdfs/lib/commons-io-2.4.jar:/usr/hdp/2.3.2.0-2950/hadoop-hdfs/lib/commons-codec-1.4.jar:/usr/hdp/2.3.2.0-2950/hadoop-hdfs/lib/commons-daemon-1.0.13.jar:/usr/hdp/2.3.2.0-2950/hadoop-hdfs/lib/protobuf-java-2.5.0.jar:/usr/hdp/2.3.2.0-2950/hadoop-hdfs/lib/jackson-mapper-asl-1.9.13.jar:/usr/hdp/2.3.2.0-2950/hadoop-hdfs/lib/log4j-1.2.17.jar:/usr/hdp/2.3.2.0-2950/hadoop-hdfs/lib/htrace-core-3.1.0-incubating.jar:/usr/hdp/2.3.2.0-2950/hadoop-hdfs/lib/leveldbjni-all-1.8.jar:/usr/hdp/2.3.2.0-2950/hadoop-hdfs/lib/guava-11.0.2.jar:/usr/hdp/2.3.2.0-2950/hadoop-hdfs/lib/commons-lang-2.6.jar:/usr/hdp/2.3.2.0-2950/hadoop-hdfs/lib/jetty-6.1.26.hwx.jar:/usr/hdp/2.3.2.0-2950/hadoop-hdfs/lib/asm-3.2.jar:/usr/hdp/2.3.2.0-2950/hadoop-hdfs/lib/jsr305-3.0.0.jar:/usr/hdp/2.3.2.0-2950/hadoop-hdfs/lib/xmlenc-0.52.jar:/usr/hdp/2.3.2.0-2950/hadoop-hdfs/lib/jersey-core-1.9.jar:/usr/hdp/2.3.2.0-2950/hadoop-hdfs/lib/jackson-core-asl-1.9.13.jar:/usr/hdp/2.3.2.0-2950/hadoop-hdfs/lib/netty-all-4.0.23.Final.jar:/usr/hdp/2.3.2.0-2950/hadoop-hdfs/lib/netty-3.6.2.Final.jar:/usr/hdp/2.3.2.0-2950/hadoop-hdfs/lib/commons-logging-1.1.3.jar:/usr/hdp/2.3.2.0-2950/hadoop-hdfs/lib/xercesImpl-2.9.1.jar:/usr/hdp/2.3.2.0-2950/hadoop-hdfs/lib/okio-1.4.0.jar:/usr/hdp/2.3.2.0-2950/hadoop-hdfs/lib/xml-apis-1.3.04.jar:/usr/hdp/2.3.2.0-2950/hadoop-hdfs/lib/jersey-server-1.9.jar:/usr/hdp/2.3.2.0-2950/hadoop-hdfs/lib/okhttp-2.4.0.jar:/usr/hdp/2.3.2.0-2950/hadoop-hdfs/lib/jetty-util-6.1.26.hwx.jar:/usr/hdp/2.3.2.0-2950/hadoop-hdfs/lib/commons-cli-1.2.jar:/usr/hdp/2.3.2.0-2950/hadoop-hdfs/lib/servlet-api-2.5.jar:/usr/hdp/2.3.2.0-2950/hadoop-hdfs/.//hadoop-hdfs-2.7.1.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hadoop-hdfs/.//hadoop-hdfs-2.7.1.2.3.2.0-2950-tests.jar:/usr/hdp/2.3.2.0-2950/hadoop-hdfs/.//hadoop-hdfs-nfs.jar:/usr/hdp/2.3.2.0-2950/hadoop-hdfs/.//hadoop-hdfs-nfs-2.7.1.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hadoop-hdfs/.//hadoop-hdfs.jar:/usr/hdp/2.3.2.0-2950/hadoop-hdfs/.//hadoop-hdfs-tests.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/commons-io-2.4.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/jettison-1.1.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/zookeeper-3.4.6.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/commons-codec-1.4.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/api-util-1.0.0-M20.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/jackson-xc-1.9.13.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/xz-1.0.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/api-asn1-api-1.0.0-M20.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/commons-beanutils-1.7.0.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/commons-beanutils-core-1.8.0.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/java-xmlbuilder-0.4.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/javassist-3.18.1-GA.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/protobuf-java-2.5.0.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/commons-httpclient-3.1.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/jackson-mapper-asl-1.9.13.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/httpcore-4.2.5.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/jsch-0.1.42.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/jsp-api-2.1.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/commons-collections-3.2.1.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/snappy-java-1.0.4.1.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/log4j-1.2.17.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/jets3t-0.9.0.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/activation-1.1.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/jersey-guice-1.9.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/htrace-core-3.1.0-incubating.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/curator-recipes-2.7.1.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/curator-client-2.7.1.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/leveldbjni-all-1.8.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/guice-servlet-3.0.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/guava-11.0.2.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/httpclient-4.2.5.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/commons-lang-2.6.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/jetty-6.1.26.hwx.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/asm-3.2.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/jersey-client-1.9.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/jaxb-impl-2.2.3-1.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/objenesis-2.1.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/guice-3.0.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/jsr305-3.0.0.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/xmlenc-0.52.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/stax-api-1.0-2.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/jersey-json-1.9.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/jersey-core-1.9.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/mysql-connector-java.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/jackson-core-asl-1.9.13.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/commons-digester-1.8.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/jackson-jaxrs-1.9.13.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/paranamer-2.3.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/netty-3.6.2.Final.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/commons-logging-1.1.3.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/fst-2.24.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/avro-1.7.4.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/gson-2.2.4.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/zookeeper-3.4.6.2.3.2.0-2950-tests.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/microsoft-windowsazure-storage-sdk-0.6.0.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/jaxb-api-2.2.2.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/commons-math3-3.1.1.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/curator-framework-2.7.1.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/apacheds-kerberos-codec-2.0.0-M15.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/commons-net-3.1.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/jersey-server-1.9.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/commons-configuration-1.6.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/jetty-util-6.1.26.hwx.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/commons-cli-1.2.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/javax.inject-1.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/apacheds-i18n-2.0.0-M15.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/commons-compress-1.4.1.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/aopalliance-1.0.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/jackson-core-2.2.3.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/lib/servlet-api-2.5.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/.//hadoop-yarn-server-timeline-plugins.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/.//hadoop-yarn-client.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/.//hadoop-yarn-server-resourcemanager.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/.//hadoop-yarn-server-web-proxy-2.7.1.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/.//hadoop-yarn-registry-2.7.1.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/.//hadoop-yarn-api.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/.//hadoop-yarn-registry.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/.//hadoop-yarn-api-2.7.1.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/.//hadoop-yarn-applications-unmanaged-am-launcher-2.7.1.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/.//hadoop-yarn-server-common-2.7.1.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/.//hadoop-yarn-server-nodemanager-2.7.1.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/.//hadoop-yarn-client-2.7.1.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/.//hadoop-yarn-server-common.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/.//hadoop-yarn-server-sharedcachemanager.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/.//hadoop-yarn-common.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/.//hadoop-yarn-server-resourcemanager-2.7.1.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/.//hadoop-yarn-applications-unmanaged-am-launcher.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/.//hadoop-yarn-common-2.7.1.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/.//hadoop-yarn-server-applicationhistoryservice-2.7.1.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/.//hadoop-yarn-server-timeline-plugins-2.7.1.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/.//hadoop-yarn-server-tests-2.7.1.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/.//hadoop-yarn-server-applicationhistoryservice.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/.//hadoop-yarn-server-tests.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/.//hadoop-yarn-applications-distributedshell-2.7.1.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/.//hadoop-yarn-server-web-proxy.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/.//hadoop-yarn-server-sharedcachemanager-2.7.1.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/.//hadoop-yarn-server-nodemanager.jar:/usr/hdp/2.3.2.0-2950/hadoop-yarn/.//hadoop-yarn-applications-distributedshell.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/lib/commons-io-2.4.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/lib/xz-1.0.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/lib/protobuf-java-2.5.0.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/lib/jackson-mapper-asl-1.9.13.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/lib/hamcrest-core-1.3.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/lib/snappy-java-1.0.4.1.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/lib/log4j-1.2.17.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/lib/jersey-guice-1.9.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/lib/leveldbjni-all-1.8.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/lib/guice-servlet-3.0.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/lib/asm-3.2.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/lib/guice-3.0.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/lib/jersey-core-1.9.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/lib/jackson-core-asl-1.9.13.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/lib/paranamer-2.3.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/lib/netty-3.6.2.Final.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/lib/avro-1.7.4.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/lib/junit-4.11.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/lib/jersey-server-1.9.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/lib/javax.inject-1.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/lib/commons-compress-1.4.1.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/lib/aopalliance-1.0.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//commons-io-2.4.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//jettison-1.1.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//zookeeper-3.4.6.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//commons-codec-1.4.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//hadoop-mapreduce-client-shuffle-2.7.1.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//api-util-1.0.0-M20.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//jackson-xc-1.9.13.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//xz-1.0.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//api-asn1-api-1.0.0-M20.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//commons-beanutils-1.7.0.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//commons-beanutils-core-1.8.0.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//java-xmlbuilder-0.4.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//protobuf-java-2.5.0.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//hadoop-extras-2.7.1.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//commons-httpclient-3.1.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//jackson-mapper-asl-1.9.13.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//hamcrest-core-1.3.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//httpcore-4.2.5.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//hadoop-distcp-2.7.1.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//jsch-0.1.42.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//hadoop-gridmix-2.7.1.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//jsp-api-2.1.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//metrics-core-3.0.1.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//commons-collections-3.2.1.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//hadoop-openstack.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//hadoop-mapreduce-client-jobclient-2.7.1.2.3.2.0-2950-tests.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//hadoop-archives-2.7.1.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//snappy-java-1.0.4.1.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//log4j-1.2.17.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//jets3t-0.9.0.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//hadoop-datajoin-2.7.1.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//activation-1.1.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//hadoop-mapreduce-client-core.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//htrace-core-3.1.0-incubating.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//hadoop-sls.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//curator-recipes-2.7.1.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//curator-client-2.7.1.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//hadoop-auth-2.7.1.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//guava-11.0.2.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//httpclient-4.2.5.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//commons-lang-2.6.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//hadoop-mapreduce-examples.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//jetty-6.1.26.hwx.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//asm-3.2.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//hadoop-mapreduce-client-app-2.7.1.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//hadoop-rumen.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//jaxb-impl-2.2.3-1.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//jsr305-3.0.0.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//hadoop-mapreduce-client-jobclient-2.7.1.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//hadoop-mapreduce-client-hs.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//hadoop-mapreduce-client-jobclient-tests.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//xmlenc-0.52.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//stax-api-1.0-2.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//jersey-json-1.9.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//hadoop-ant-2.7.1.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//jersey-core-1.9.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//hadoop-datajoin.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//jackson-core-asl-1.9.13.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//hadoop-mapreduce-client-shuffle.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//commons-digester-1.8.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//joda-time-2.8.2.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//hadoop-mapreduce-client-hs-plugins.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//jackson-jaxrs-1.9.13.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//commons-lang3-3.3.2.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//paranamer-2.3.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//netty-3.6.2.Final.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//commons-logging-1.1.3.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//avro-1.7.4.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//gson-2.2.4.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//hadoop-openstack-2.7.1.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//hadoop-streaming.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//junit-4.11.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//microsoft-windowsazure-storage-sdk-0.6.0.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//hadoop-mapreduce-client-hs-plugins-2.7.1.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//jaxb-api-2.2.2.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//hadoop-ant.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//hadoop-mapreduce-client-jobclient.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//hadoop-auth.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//commons-math3-3.1.1.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//hadoop-archives.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//curator-framework-2.7.1.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//apacheds-kerberos-codec-2.0.0-M15.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//hadoop-mapreduce-client-common.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//mockito-all-1.8.5.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//hadoop-gridmix.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//commons-net-3.1.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//hadoop-mapreduce-examples-2.7.1.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//hadoop-sls-2.7.1.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//jersey-server-1.9.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//commons-configuration-1.6.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//hadoop-distcp.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//hadoop-mapreduce-client-hs-2.7.1.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//jetty-util-6.1.26.hwx.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//commons-cli-1.2.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//hadoop-mapreduce-client-core-2.7.1.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//hadoop-streaming-2.7.1.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//apacheds-i18n-2.0.0-M15.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//commons-compress-1.4.1.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//hadoop-mapreduce-client-common-2.7.1.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//hadoop-extras.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//jackson-core-2.2.3.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//hadoop-mapreduce-client-app.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//hadoop-rumen-2.7.1.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/.//servlet-api-2.5.jar:::/usr/share/java/mysql-connector-java-5.1.17.jar:/usr/share/java/mysql-connector-java-5.1.31-bin.jar:/usr/share/java/mysql-connector-java.jar:/usr/hdp/2.3.2.0-2950/tez/tez-common-0.7.0.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/tez/tez-examples-0.7.0.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/tez/tez-mapreduce-0.7.0.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/tez/tez-yarn-timeline-history-with-acls-0.7.0.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/tez/tez-runtime-internals-0.7.0.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/tez/tez-api-0.7.0.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/tez/tez-history-parser-0.7.0.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/tez/tez-yarn-timeline-history-0.7.0.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/tez/tez-tests-0.7.0.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/tez/tez-runtime-library-0.7.0.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/tez/tez-dag-0.7.0.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/tez/lib/commons-io-2.4.jar:/usr/hdp/2.3.2.0-2950/tez/lib/commons-codec-1.4.jar:/usr/hdp/2.3.2.0-2950/tez/lib/protobuf-java-2.5.0.jar:/usr/hdp/2.3.2.0-2950/tez/lib/hadoop-yarn-server-web-proxy-2.7.1.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/tez/lib/commons-collections4-4.0.jar:/usr/hdp/2.3.2.0-2950/tez/lib/commons-collections-3.2.1.jar:/usr/hdp/2.3.2.0-2950/tez/lib/jettison-1.3.4.jar:/usr/hdp/2.3.2.0-2950/tez/lib/slf4j-api-1.7.5.jar:/usr/hdp/2.3.2.0-2950/tez/lib/guava-11.0.2.jar:/usr/hdp/2.3.2.0-2950/tez/lib/commons-lang-2.6.jar:/usr/hdp/2.3.2.0-2950/tez/lib/jetty-6.1.26.hwx.jar:/usr/hdp/2.3.2.0-2950/tez/lib/jersey-client-1.9.jar:/usr/hdp/2.3.2.0-2950/tez/lib/hadoop-aws-2.7.1.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/tez/lib/jersey-json-1.9.jar:/usr/hdp/2.3.2.0-2950/tez/lib/hadoop-azure-2.7.1.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/tez/lib/commons-math3-3.1.1.jar:/usr/hdp/2.3.2.0-2950/tez/lib/hadoop-annotations-2.7.1.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/tez/lib/jsr305-2.0.3.jar:/usr/hdp/2.3.2.0-2950/tez/lib/jetty-util-6.1.26.hwx.jar:/usr/hdp/2.3.2.0-2950/tez/lib/commons-cli-1.2.jar:/usr/hdp/2.3.2.0-2950/tez/lib/hadoop-mapreduce-client-core-2.7.1.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/tez/lib/hadoop-mapreduce-client-common-2.7.1.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/tez/lib/servlet-api-2.5.jar:/usr/hdp/2.3.2.0-2950/tez/conf:/usr/hdp/2.3.2.0-2950/hadoop/conf:/usr/hdp/2.3.2.0-2950/hadoop/hadoop-nfs-2.7.1.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hadoop/hadoop-common.jar:/usr/hdp/2.3.2.0-2950/hadoop/hadoop-auth-2.7.1.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hadoop/hadoop-aws-2.7.1.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hadoop/hadoop-common-2.7.1.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hadoop/hadoop-azure-2.7.1.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hadoop/hadoop-common-tests.jar:/usr/hdp/2.3.2.0-2950/hadoop/hadoop-annotations.jar:/usr/hdp/2.3.2.0-2950/hadoop/hadoop-azure.jar:/usr/hdp/2.3.2.0-2950/hadoop/hadoop-aws.jar:/usr/hdp/2.3.2.0-2950/hadoop/hadoop-auth.jar:/usr/hdp/2.3.2.0-2950/hadoop/hadoop-annotations-2.7.1.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hadoop/hadoop-common-2.7.1.2.3.2.0-2950-tests.jar:/usr/hdp/2.3.2.0-2950/hadoop/hadoop-nfs.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/commons-io-2.4.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/azure-storage-2.2.0.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/jettison-1.1.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/ranger-plugins-audit-0.5.0.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/zookeeper-3.4.6.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/commons-codec-1.4.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/api-util-1.0.0-M20.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/jackson-xc-1.9.13.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/xz-1.0.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/noggit-0.6.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/api-asn1-api-1.0.0-M20.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/commons-beanutils-1.7.0.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/commons-beanutils-core-1.8.0.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/java-xmlbuilder-0.4.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/protobuf-java-2.5.0.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/commons-httpclient-3.1.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/jackson-annotations-2.2.3.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/jackson-mapper-asl-1.9.13.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/hamcrest-core-1.3.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/httpcore-4.2.5.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/ranger-plugins-common-0.5.0.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/javax.persistence-2.1.0.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/jsch-0.1.42.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/jsp-api-2.1.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/commons-collections-3.2.1.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/snappy-java-1.0.4.1.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/log4j-1.2.17.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/jets3t-0.9.0.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/slf4j-log4j12-1.7.10.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/activation-1.1.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/htrace-core-3.1.0-incubating.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/curator-recipes-2.7.1.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/curator-client-2.7.1.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/guava-11.0.2.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/httpclient-4.2.5.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/commons-lang-2.6.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/jetty-6.1.26.hwx.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/asm-3.2.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/eclipselink-2.5.2-M1.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/jaxb-impl-2.2.3-1.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/jackson-databind-2.2.3.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/jsr305-3.0.0.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/xmlenc-0.52.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/stax-api-1.0-2.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/jersey-json-1.9.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/jersey-core-1.9.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/mysql-connector-java.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/hadoop-common-2.7.1.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/jackson-core-asl-1.9.13.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/commons-digester-1.8.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/jackson-jaxrs-1.9.13.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/paranamer-2.3.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/netty-3.6.2.Final.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/slf4j-api-1.7.10.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/commons-logging-1.1.3.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/avro-1.7.4.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/gson-2.2.4.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/ranger-plugins-cred-0.5.0.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/junit-4.11.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/microsoft-windowsazure-storage-sdk-0.6.0.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/ranger-hdfs-plugin-0.5.0.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/jaxb-api-2.2.2.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/httpmime-4.2.5.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/commons-math3-3.1.1.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/curator-framework-2.7.1.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/apacheds-kerberos-codec-2.0.0-M15.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/mockito-all-1.8.5.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/ranger-yarn-plugin-0.5.0.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/commons-net-3.1.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/aws-java-sdk-1.7.4.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/ojdbc6.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/jersey-server-1.9.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/commons-configuration-1.6.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/ranger_solrj-0.5.0.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/jetty-util-6.1.26.hwx.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/commons-cli-1.2.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/apacheds-i18n-2.0.0-M15.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/commons-compress-1.4.1.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/jackson-core-2.2.3.jar:/usr/hdp/2.3.2.0-2950/hadoop/lib/servlet-api-2.5.jar:/usr/hdp/2.3.2.0-2950/zookeeper/zookeeper-3.4.6.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/zookeeper/zookeeper.jar:/usr/hdp/2.3.2.0-2950/zookeeper/lib/maven-artifact-manager-2.2.1.jar:/usr/hdp/2.3.2.0-2950/zookeeper/lib/wagon-http-2.4.jar:/usr/hdp/2.3.2.0-2950/zookeeper/lib/slf4j-log4j12-1.6.1.jar:/usr/hdp/2.3.2.0-2950/zookeeper/lib/xercesMinimal-1.9.6.2.jar:/usr/hdp/2.3.2.0-2950/zookeeper/lib/maven-profile-2.2.1.jar:/usr/hdp/2.3.2.0-2950/zookeeper/lib/maven-repository-metadata-2.2.1.jar:/usr/hdp/2.3.2.0-2950/zookeeper/lib/httpclient-4.2.3.jar:/usr/hdp/2.3.2.0-2950/zookeeper/lib/ant-launcher-1.8.0.jar:/usr/hdp/2.3.2.0-2950/zookeeper/lib/jsoup-1.7.1.jar:/usr/hdp/2.3.2.0-2950/zookeeper/lib/wagon-file-1.0-beta-6.jar:/usr/hdp/2.3.2.0-2950/zookeeper/lib/commons-io-2.2.jar:/usr/hdp/2.3.2.0-2950/zookeeper/lib/wagon-http-shared4-2.4.jar:/usr/hdp/2.3.2.0-2950/zookeeper/lib/jline-0.9.94.jar:/usr/hdp/2.3.2.0-2950/zookeeper/lib/ant-1.8.0.jar:/usr/hdp/2.3.2.0-2950/zookeeper/lib/wagon-provider-api-2.4.jar:/usr/hdp/2.3.2.0-2950/zookeeper/lib/maven-ant-tasks-2.1.3.jar:/usr/hdp/2.3.2.0-2950/zookeeper/lib/nekohtml-1.9.6.2.jar:/usr/hdp/2.3.2.0-2950/zookeeper/lib/commons-codec-1.6.jar:/usr/hdp/2.3.2.0-2950/zookeeper/lib/maven-error-diagnostics-2.2.1.jar:/usr/hdp/2.3.2.0-2950/zookeeper/lib/backport-util-concurrent-3.1.jar:/usr/hdp/2.3.2.0-2950/zookeeper/lib/log4j-1.2.16.jar:/usr/hdp/2.3.2.0-2950/zookeeper/lib/plexus-interpolation-1.11.jar:/usr/hdp/2.3.2.0-2950/zookeeper/lib/plexus-container-default-1.0-alpha-9-stable-1.jar:/usr/hdp/2.3.2.0-2950/zookeeper/lib/plexus-utils-3.0.8.jar:/usr/hdp/2.3.2.0-2950/zookeeper/lib/slf4j-api-1.6.1.jar:/usr/hdp/2.3.2.0-2950/zookeeper/lib/httpcore-4.2.3.jar:/usr/hdp/2.3.2.0-2950/zookeeper/lib/maven-model-2.2.1.jar:/usr/hdp/2.3.2.0-2950/zookeeper/lib/maven-project-2.2.1.jar:/usr/hdp/2.3.2.0-2950/zookeeper/lib/wagon-http-lightweight-1.0-beta-6.jar:/usr/hdp/2.3.2.0-2950/zookeeper/lib/wagon-http-shared-1.0-beta-6.jar:/usr/hdp/2.3.2.0-2950/zookeeper/lib/maven-settings-2.2.1.jar:/usr/hdp/2.3.2.0-2950/zookeeper/lib/maven-artifact-2.2.1.jar:/usr/hdp/2.3.2.0-2950/zookeeper/lib/commons-logging-1.1.1.jar:/usr/hdp/2.3.2.0-2950/zookeeper/lib/netty-3.7.0.Final.jar:/usr/hdp/2.3.2.0-2950/zookeeper/lib/classworlds-1.1-alpha-2.jar:/usr/hdp/2.3.2.0-2950/zookeeper/lib/maven-plugin-registry-2.2.1.jar::/usr/hdp/2.3.2.0-2950/atlas/hook/hive/scala-compiler-2.10.4.jar:/usr/hdp/2.3.2.0-2950/atlas/hook/hive/atlas-typesystem-0.5.0.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/atlas/hook/hive/scala-reflect-2.10.4.jar:/usr/hdp/2.3.2.0-2950/atlas/hook/hive/scalap-2.10.4.jar:/usr/hdp/2.3.2.0-2950/atlas/hook/hive/atlas-client-0.5.0.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/atlas/hook/hive/json4s-core_2.10-3.2.11.jar:/usr/hdp/2.3.2.0-2950/atlas/hook/hive/hive-bridge-0.5.0.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/atlas/hook/hive/json4s-native_2.10-3.2.11.jar:/usr/hdp/2.3.2.0-2950/atlas/hook/hive/json4s-ast_2.10-3.2.11.jar:/usr/hdp/2.3.2.0-2950/atlas/hook/hive/scala-library-2.10.4.jar:/usr/hdp/2.3.2.0-2950/hive/lib/accumulo-core-1.7.0.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hive/lib/accumulo-fate-1.7.0.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hive/lib/accumulo-start-1.7.0.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hive/lib/accumulo-trace-1.7.0.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hive/lib/activation-1.1.jar:/usr/hdp/2.3.2.0-2950/hive/lib/ant-1.9.1.jar:/usr/hdp/2.3.2.0-2950/hive/lib/ant-launcher-1.9.1.jar:/usr/hdp/2.3.2.0-2950/hive/lib/antlr-2.7.7.jar:/usr/hdp/2.3.2.0-2950/hive/lib/antlr-runtime-3.4.jar:/usr/hdp/2.3.2.0-2950/hive/lib/apache-log4j-extras-1.2.17.jar:/usr/hdp/2.3.2.0-2950/hive/lib/asm-commons-3.1.jar:/usr/hdp/2.3.2.0-2950/hive/lib/asm-tree-3.1.jar:/usr/hdp/2.3.2.0-2950/hive/lib/avro-1.7.5.jar:/usr/hdp/2.3.2.0-2950/hive/lib/bonecp-0.8.0.RELEASE.jar:/usr/hdp/2.3.2.0-2950/hive/lib/calcite-avatica-1.2.0.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hive/lib/calcite-core-1.2.0.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hive/lib/calcite-linq4j-1.2.0.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hive/lib/commons-cli-1.2.jar:/usr/hdp/2.3.2.0-2950/hive/lib/commons-codec-1.4.jar:/usr/hdp/2.3.2.0-2950/hive/lib/commons-collections-3.2.1.jar:/usr/hdp/2.3.2.0-2950/hive/lib/commons-compiler-2.7.6.jar:/usr/hdp/2.3.2.0-2950/hive/lib/commons-compress-1.4.1.jar:/usr/hdp/2.3.2.0-2950/hive/lib/commons-dbcp-1.4.jar:/usr/hdp/2.3.2.0-2950/hive/lib/commons-httpclient-3.0.1.jar:/usr/hdp/2.3.2.0-2950/hive/lib/commons-io-2.4.jar:/usr/hdp/2.3.2.0-2950/hive/lib/commons-lang-2.6.jar:/usr/hdp/2.3.2.0-2950/hive/lib/commons-logging-1.1.3.jar:/usr/hdp/2.3.2.0-2950/hive/lib/commons-math-2.1.jar:/usr/hdp/2.3.2.0-2950/hive/lib/commons-pool-1.5.4.jar:/usr/hdp/2.3.2.0-2950/hive/lib/commons-vfs2-2.0.jar:/usr/hdp/2.3.2.0-2950/hive/lib/curator-client-2.6.0.jar:/usr/hdp/2.3.2.0-2950/hive/lib/curator-framework-2.6.0.jar:/usr/hdp/2.3.2.0-2950/hive/lib/curator-recipes-2.6.0.jar:/usr/hdp/2.3.2.0-2950/hive/lib/datanucleus-api-jdo-3.2.6.jar:/usr/hdp/2.3.2.0-2950/hive/lib/datanucleus-core-3.2.10.jar:/usr/hdp/2.3.2.0-2950/hive/lib/datanucleus-rdbms-3.2.9.jar:/usr/hdp/2.3.2.0-2950/hive/lib/derby-10.10.2.0.jar:/usr/hdp/2.3.2.0-2950/hive/lib/eclipselink-2.5.2-M1.jar:/usr/hdp/2.3.2.0-2950/hive/lib/eigenbase-properties-1.1.5.jar:/usr/hdp/2.3.2.0-2950/hive/lib/geronimo-annotation_1.0_spec-1.1.1.jar:/usr/hdp/2.3.2.0-2950/hive/lib/geronimo-jaspic_1.0_spec-1.0.jar:/usr/hdp/2.3.2.0-2950/hive/lib/geronimo-jta_1.1_spec-1.1.1.jar:/usr/hdp/2.3.2.0-2950/hive/lib/groovy-all-2.1.6.jar:/usr/hdp/2.3.2.0-2950/hive/lib/gson-2.2.4.jar:/usr/hdp/2.3.2.0-2950/hive/lib/guava-14.0.1.jar:/usr/hdp/2.3.2.0-2950/hive/lib/hamcrest-core-1.1.jar:/usr/hdp/2.3.2.0-2950/hive/lib/hive-accumulo-handler-1.2.1.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hive/lib/hive-accumulo-handler.jar:/usr/hdp/2.3.2.0-2950/hive/lib/hive-ant-1.2.1.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hive/lib/hive-ant.jar:/usr/hdp/2.3.2.0-2950/hive/lib/hive-beeline-1.2.1.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hive/lib/hive-beeline.jar:/usr/hdp/2.3.2.0-2950/hive/lib/hive-cli-1.2.1.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hive/lib/hive-cli.jar:/usr/hdp/2.3.2.0-2950/hive/lib/hive-common-1.2.1.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hive/lib/hive-common.jar:/usr/hdp/2.3.2.0-2950/hive/lib/hive-contrib-1.2.1.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hive/lib/hive-contrib.jar:/usr/hdp/2.3.2.0-2950/hive/lib/hive-exec-1.2.1.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hive/lib/hive-exec.jar:/usr/hdp/2.3.2.0-2950/hive/lib/hive-hbase-handler-1.2.1.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hive/lib/hive-hbase-handler.jar:/usr/hdp/2.3.2.0-2950/hive/lib/hive-hwi-1.2.1.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hive/lib/hive-hwi.jar:/usr/hdp/2.3.2.0-2950/hive/lib/hive-jdbc-1.2.1.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hive/lib/hive-jdbc-1.2.1.2.3.2.0-2950-standalone.jar:/usr/hdp/2.3.2.0-2950/hive/lib/hive-jdbc.jar:/usr/hdp/2.3.2.0-2950/hive/lib/hive-metastore-1.2.1.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hive/lib/hive-metastore.jar:/usr/hdp/2.3.2.0-2950/hive/lib/hive-serde-1.2.1.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hive/lib/hive-serde.jar:/usr/hdp/2.3.2.0-2950/hive/lib/hive-service-1.2.1.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hive/lib/hive-service.jar:/usr/hdp/2.3.2.0-2950/hive/lib/hive-shims-0.20S-1.2.1.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hive/lib/hive-shims-0.23-1.2.1.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hive/lib/hive-shims-1.2.1.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hive/lib/hive-shims-common-1.2.1.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hive/lib/hive-shims-common.jar:/usr/hdp/2.3.2.0-2950/hive/lib/hive-shims.jar:/usr/hdp/2.3.2.0-2950/hive/lib/hive-shims-scheduler-1.2.1.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hive/lib/hive-shims-scheduler.jar:/usr/hdp/2.3.2.0-2950/hive/lib/hive-testutils-1.2.1.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hive/lib/hive-testutils.jar:/usr/hdp/2.3.2.0-2950/hive/lib/htrace-core-3.1.0-incubating.jar:/usr/hdp/2.3.2.0-2950/hive/lib/httpclient-4.4.jar:/usr/hdp/2.3.2.0-2950/hive/lib/httpcore-4.4.jar:/usr/hdp/2.3.2.0-2950/hive/lib/httpmime-4.2.5.jar:/usr/hdp/2.3.2.0-2950/hive/lib/ivy-2.4.0.jar:/usr/hdp/2.3.2.0-2950/hive/lib/janino-2.7.6.jar:/usr/hdp/2.3.2.0-2950/hive/lib/javax.persistence-2.1.0.jar:/usr/hdp/2.3.2.0-2950/hive/lib/jcommander-1.32.jar:/usr/hdp/2.3.2.0-2950/hive/lib/jdo-api-3.0.1.jar:/usr/hdp/2.3.2.0-2950/hive/lib/jetty-all-7.6.0.v20120127.jar:/usr/hdp/2.3.2.0-2950/hive/lib/jetty-all-server-7.6.0.v20120127.jar:/usr/hdp/2.3.2.0-2950/hive/lib/jline-2.12.jar:/usr/hdp/2.3.2.0-2950/hive/lib/joda-time-2.5.jar:/usr/hdp/2.3.2.0-2950/hive/lib/jpam-1.1.jar:/usr/hdp/2.3.2.0-2950/hive/lib/json-20090211.jar:/usr/hdp/2.3.2.0-2950/hive/lib/jsr305-3.0.0.jar:/usr/hdp/2.3.2.0-2950/hive/lib/jta-1.1.jar:/usr/hdp/2.3.2.0-2950/hive/lib/junit-4.11.jar:/usr/hdp/2.3.2.0-2950/hive/lib/libfb303-0.9.2.jar:/usr/hdp/2.3.2.0-2950/hive/lib/libthrift-0.9.2.jar:/usr/hdp/2.3.2.0-2950/hive/lib/log4j-1.2.16.jar:/usr/hdp/2.3.2.0-2950/hive/lib/mail-1.4.1.jar:/usr/hdp/2.3.2.0-2950/hive/lib/maven-scm-api-1.4.jar:/usr/hdp/2.3.2.0-2950/hive/lib/maven-scm-provider-svn-commons-1.4.jar:/usr/hdp/2.3.2.0-2950/hive/lib/maven-scm-provider-svnexe-1.4.jar:/usr/hdp/2.3.2.0-2950/hive/lib/mysql-connector-java.jar:/usr/hdp/2.3.2.0-2950/hive/lib/netty-3.7.0.Final.jar:/usr/hdp/2.3.2.0-2950/hive/lib/noggit-0.6.jar:/usr/hdp/2.3.2.0-2950/hive/lib/ojdbc6.jar:/usr/hdp/2.3.2.0-2950/hive/lib/opencsv-2.3.jar:/usr/hdp/2.3.2.0-2950/hive/lib/oro-2.0.8.jar:/usr/hdp/2.3.2.0-2950/hive/lib/paranamer-2.3.jar:/usr/hdp/2.3.2.0-2950/hive/lib/parquet-hadoop-bundle-1.6.0.jar:/usr/hdp/2.3.2.0-2950/hive/lib/pentaho-aggdesigner-algorithm-5.1.5-jhyde.jar:/usr/hdp/2.3.2.0-2950/hive/lib/plexus-utils-1.5.6.jar:/usr/hdp/2.3.2.0-2950/hive/lib/ranger-hive-plugin-0.5.0.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hive/lib/ranger-plugins-audit-0.5.0.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hive/lib/ranger-plugins-common-0.5.0.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hive/lib/ranger-plugins-cred-0.5.0.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hive/lib/ranger_solrj-0.5.0.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hive/lib/regexp-1.3.jar:/usr/hdp/2.3.2.0-2950/hive/lib/servlet-api-2.5.jar:/usr/hdp/2.3.2.0-2950/hive/lib/snappy-java-1.0.5.jar:/usr/hdp/2.3.2.0-2950/hive/lib/ST4-4.0.4.jar:/usr/hdp/2.3.2.0-2950/hive/lib/stax-api-1.0.1.jar:/usr/hdp/2.3.2.0-2950/hive/lib/stringtemplate-3.2.1.jar:/usr/hdp/2.3.2.0-2950/hive/lib/super-csv-2.2.0.jar:/usr/hdp/2.3.2.0-2950/hive/lib/tempus-fugit-1.1.jar:/usr/hdp/2.3.2.0-2950/hive/lib/velocity-1.5.jar:/usr/hdp/2.3.2.0-2950/hive/lib/xz-1.0.jar:/usr/hdp/2.3.2.0-2950/hive/lib/zookeeper-3.4.6.2.3.2.0-2950.jar::/usr/hdp/2.3.2.0-2950/hive-hcatalog/libexec/../share/hcatalog/hive-hcatalog-core-1.2.1.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hive/conf::/usr/hdp/2.3.2.0-2950/hbase/lib/netty-3.2.4.Final.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/commons-io-2.4.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/ranger-plugins-audit-0.5.0.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/hbase-procedure.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/hbase-it.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/api-util-1.0.0-M20.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/commons-daemon-1.0.13.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/jackson-xc-1.9.13.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/xz-1.0.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/hbase-resource-bundle-1.1.2.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/noggit-0.6.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/api-asn1-api-1.0.0-M20.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/commons-beanutils-1.7.0.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/commons-beanutils-core-1.8.0.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/java-xmlbuilder-0.4.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/hbase-hadoop2-compat.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/protobuf-java-2.5.0.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/commons-httpclient-3.1.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/hbase-server.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/hbase-annotations.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/hbase-examples.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/jackson-mapper-asl-1.9.13.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/hbase-hadoop-compat.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/httpcore-4.2.5.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/ranger-plugins-common-0.5.0.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/jsch-0.1.42.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/hbase-rest.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/findbugs-annotations-1.3.9-1.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/hbase-hadoop2-compat-1.1.2.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/commons-collections-3.2.1.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/jcodings-1.0.8.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/hbase-prefix-tree.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/hbase-annotations-1.1.2.2.3.2.0-2950-tests.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/snappy-java-1.0.4.1.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/log4j-1.2.17.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/jets3t-0.9.0.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/jsp-2.1-6.1.14.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/hbase-it-1.1.2.2.3.2.0-2950-tests.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/commons-math-2.2.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/phoenix-server.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/activation-1.1.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/jersey-guice-1.9.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/htrace-core-3.1.0-incubating.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/curator-recipes-2.7.1.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/commons-codec-1.9.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/curator-client-2.7.1.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/leveldbjni-all-1.8.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/guice-servlet-3.0.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/httpclient-4.2.5.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/commons-lang-2.6.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/jetty-6.1.26.hwx.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/jersey-client-1.9.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/ranger-hbase-plugin-0.5.0.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/asm-3.1.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/eclipselink-2.5.2-M1.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/jaxb-impl-2.2.3-1.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/guice-3.0.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/joni-2.1.2.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/hbase-client-1.1.2.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/xmlenc-0.52.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/jersey-json-1.9.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/hbase-shell-1.1.2.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/jersey-core-1.9.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/mysql-connector-java.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/jsr305-1.3.9.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/jackson-core-asl-1.9.13.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/netty-all-4.0.23.Final.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/disruptor-3.3.0.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/commons-digester-1.8.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/hbase-prefix-tree-1.1.2.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/guava-12.0.1.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/spymemcached-2.11.6.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/hbase-resource-bundle.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/jasper-compiler-5.5.23.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/hbase-rest-1.1.2.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/jackson-jaxrs-1.9.13.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/paranamer-2.3.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/hbase-client.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/commons-logging-1.2.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/jetty-sslengine-6.1.26.hwx.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/hbase-server-1.1.2.2.3.2.0-2950-tests.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/hbase-shell.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/avro-1.7.4.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/hbase-examples-1.1.2.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/jruby-complete-1.6.8.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/gson-2.2.4.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/ranger-plugins-cred-0.5.0.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/junit-4.11.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/zookeeper.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/microsoft-windowsazure-storage-sdk-0.6.0.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/jaxb-api-2.2.2.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/slf4j-api-1.7.7.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/xercesImpl-2.9.1.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/hbase-common.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/jamon-runtime-2.3.1.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/hbase-hadoop-compat-1.1.2.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/httpmime-4.2.5.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/okio-1.4.0.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/xml-apis-1.3.04.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/commons-math3-3.1.1.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/curator-framework-2.7.1.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/metrics-core-2.2.0.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/apacheds-kerberos-codec-2.0.0-M15.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/jasper-runtime-5.5.23.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/hbase-server-1.1.2.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/commons-el-1.0.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/commons-net-3.1.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/ojdbc6.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/hbase-it-1.1.2.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/jsp-api-2.1-6.1.14.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/jersey-server-1.9.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/commons-configuration-1.6.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/hbase-common-1.1.2.2.3.2.0-2950-tests.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/hbase-protocol.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/okhttp-2.4.0.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/ranger_solrj-0.5.0.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/jetty-util-6.1.26.hwx.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/jettison-1.3.3.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/commons-cli-1.2.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/hbase-procedure-1.1.2.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/javax.inject-1.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/apacheds-i18n-2.0.0-M15.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/commons-compress-1.4.1.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/aopalliance-1.0.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/jackson-core-2.2.3.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/hbase-common-1.1.2.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/hbase-annotations-1.1.2.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/hbase-protocol-1.1.2.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/servlet-api-2.5.jar:/usr/hdp/2.3.2.0-2950/hbase/lib/servlet-api-2.5-6.1.14.jar:/usr/hdp/2.3.2.0-2950/hbase/conf::/usr/hdp/2.3.2.0-2950//sqoop/sqoop-1.4.6.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950//sqoop/sqoop-test-1.4.6.2.3.2.0-2950.jar:::/usr/share/java/mysql-connector-java-5.1.17.jar:/usr/share/java/mysql-connector-java-5.1.31-bin.jar:/usr/share/java/mysql-connector-java.jar:/usr/hdp/2.3.2.0-2950/tez/tez-common-0.7.0.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/tez/tez-examples-0.7.0.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/tez/tez-mapreduce-0.7.0.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/tez/tez-yarn-timeline-history-with-acls-0.7.0.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/tez/tez-runtime-internals-0.7.0.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/tez/tez-api-0.7.0.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/tez/tez-history-parser-0.7.0.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/tez/tez-yarn-timeline-history-0.7.0.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/tez/tez-tests-0.7.0.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/tez/tez-runtime-library-0.7.0.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/tez/tez-dag-0.7.0.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/tez/lib/commons-io-2.4.jar:/usr/hdp/2.3.2.0-2950/tez/lib/commons-codec-1.4.jar:/usr/hdp/2.3.2.0-2950/tez/lib/protobuf-java-2.5.0.jar:/usr/hdp/2.3.2.0-2950/tez/lib/hadoop-yarn-server-web-proxy-2.7.1.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/tez/lib/commons-collections4-4.0.jar:/usr/hdp/2.3.2.0-2950/tez/lib/commons-collections-3.2.1.jar:/usr/hdp/2.3.2.0-2950/tez/lib/jettison-1.3.4.jar:/usr/hdp/2.3.2.0-2950/tez/lib/slf4j-api-1.7.5.jar:/usr/hdp/2.3.2.0-2950/tez/lib/guava-11.0.2.jar:/usr/hdp/2.3.2.0-2950/tez/lib/commons-lang-2.6.jar:/usr/hdp/2.3.2.0-2950/tez/lib/jetty-6.1.26.hwx.jar:/usr/hdp/2.3.2.0-2950/tez/lib/jersey-client-1.9.jar:/usr/hdp/2.3.2.0-2950/tez/lib/hadoop-aws-2.7.1.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/tez/lib/jersey-json-1.9.jar:/usr/hdp/2.3.2.0-2950/tez/lib/hadoop-azure-2.7.1.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/tez/lib/commons-math3-3.1.1.jar:/usr/hdp/2.3.2.0-2950/tez/lib/hadoop-annotations-2.7.1.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/tez/lib/jsr305-2.0.3.jar:/usr/hdp/2.3.2.0-2950/tez/lib/jetty-util-6.1.26.hwx.jar:/usr/hdp/2.3.2.0-2950/tez/lib/commons-cli-1.2.jar:/usr/hdp/2.3.2.0-2950/tez/lib/hadoop-mapreduce-client-core-2.7.1.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/tez/lib/hadoop-mapreduce-client-common-2.7.1.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/tez/lib/servlet-api-2.5.jar:/usr/hdp/2.3.2.0-2950/tez/conf:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/hadoop-mapreduce-client-core.jar:/usr/hdp/2.3.2.0-2950/hadoop-mapreduce/hadoop-mapreduce-client-core-2.7.1.2.3.2.0-2950.jar:/usr/hdp/2.3.2.0-2950/sqoop/sqoop-1.4.6.2.3.2.0-2950.jar\nNote: /tmp/sqoop-zeppelin/compile/3d70e59eeb4b9f7850bce766ddf373a4/factsales.java uses or overrides a deprecated API.\nNote: Recompile with -Xlint:deprecation for details.\n16/01/14 20:26:52 DEBUG orm.CompilationManager: Could not rename /tmp/sqoop-zeppelin/compile/3d70e59eeb4b9f7850bce766ddf373a4/factsales.java to /home/zeppelin/./factsales.java\n16/01/14 20:26:52 INFO orm.CompilationManager: Writing jar file: /tmp/sqoop-zeppelin/compile/3d70e59eeb4b9f7850bce766ddf373a4/factsales.jar\n16/01/14 20:26:52 DEBUG orm.CompilationManager: Scanning for .class files in directory: /tmp/sqoop-zeppelin/compile/3d70e59eeb4b9f7850bce766ddf373a4\n16/01/14 20:26:52 DEBUG orm.CompilationManager: Got classfile: /tmp/sqoop-zeppelin/compile/3d70e59eeb4b9f7850bce766ddf373a4/factsales.class -> factsales.class\n16/01/14 20:26:52 DEBUG orm.CompilationManager: Finished writing jar file /tmp/sqoop-zeppelin/compile/3d70e59eeb4b9f7850bce766ddf373a4/factsales.jar\n16/01/14 20:26:52 DEBUG tool.ImportTool: Using temporary folder: 6d1f95c88250437390c10cbb118d127d_factsales\n16/01/14 20:26:52 DEBUG manager.SqlManager: Execute getColumnInfoRawQuery : SELECT t.* FROM \"factsales\" AS t LIMIT 1\n16/01/14 20:26:52 DEBUG manager.SqlManager: Using fetchSize for next query: 1000\n16/01/14 20:26:52 INFO manager.SqlManager: Executing SQL statement: SELECT t.* FROM \"factsales\" AS t LIMIT 1\n16/01/14 20:26:52 DEBUG manager.SqlManager: Found column saleskey of type [4, 10, 0]\n16/01/14 20:26:52 DEBUG manager.SqlManager: Found column datekey of type [93, 29, 6]\n16/01/14 20:26:52 DEBUG manager.SqlManager: Found column channelkey of type [4, 10, 0]\n16/01/14 20:26:52 DEBUG manager.SqlManager: Found column storekey of type [4, 10, 0]\n16/01/14 20:26:52 DEBUG manager.SqlManager: Found column productkey of type [4, 10, 0]\n16/01/14 20:26:52 DEBUG manager.SqlManager: Found column promotionkey of type [4, 10, 0]\n16/01/14 20:26:52 DEBUG manager.SqlManager: Found column currencykey of type [4, 10, 0]\n16/01/14 20:26:52 DEBUG manager.SqlManager: Found column unitcost of type [8, 17, 17]\n16/01/14 20:26:52 DEBUG manager.SqlManager: Found column unitprice of type [8, 17, 17]\n16/01/14 20:26:52 DEBUG manager.SqlManager: Found column salesquantity of type [4, 10, 0]\n16/01/14 20:26:52 DEBUG manager.SqlManager: Found column returnquantity of type [4, 10, 0]\n16/01/14 20:26:52 DEBUG manager.SqlManager: Found column returnamount of type [8, 17, 17]\n16/01/14 20:26:52 DEBUG manager.SqlManager: Found column discountquantity of type [4, 10, 0]\n16/01/14 20:26:52 DEBUG manager.SqlManager: Found column discountamount of type [8, 17, 17]\n16/01/14 20:26:52 DEBUG manager.SqlManager: Found column totalcost of type [8, 17, 17]\n16/01/14 20:26:52 DEBUG manager.SqlManager: Found column salesamount of type [8, 17, 17]\n16/01/14 20:26:52 DEBUG manager.SqlManager: Found column etlloadid of type [4, 10, 0]\n16/01/14 20:26:52 DEBUG manager.SqlManager: Found column loaddate of type [93, 29, 6]\n16/01/14 20:26:52 DEBUG manager.SqlManager: Found column updatedate of type [93, 29, 6]\n16/01/14 20:26:52 INFO tool.ImportTool: Incremental import based on column \"updatedate\"\n16/01/14 20:26:52 INFO tool.ImportTool: Lower bound value: '2015-01-01'\n16/01/14 20:26:52 INFO tool.ImportTool: Upper bound value: '2016-01-14 20:26:52.542259'\n16/01/14 20:26:52 INFO manager.DirectPostgresqlManager: Beginning psql fast path import\n16/01/14 20:26:52 DEBUG manager.SqlManager: Using fetchSize for next query: 1000\n16/01/14 20:26:52 INFO manager.SqlManager: Executing SQL statement: SELECT t.* FROM \"factsales\" AS t LIMIT 1\n16/01/14 20:26:52 DEBUG manager.SqlManager: Found column saleskey of type int4\n16/01/14 20:26:52 DEBUG manager.SqlManager: Found column datekey of type timestamp\n16/01/14 20:26:52 DEBUG manager.SqlManager: Found column channelkey of type int4\n16/01/14 20:26:52 DEBUG manager.SqlManager: Found column storekey of type int4\n16/01/14 20:26:52 DEBUG manager.SqlManager: Found column productkey of type int4\n16/01/14 20:26:52 DEBUG manager.SqlManager: Found column promotionkey of type int4\n16/01/14 20:26:52 DEBUG manager.SqlManager: Found column currencykey of type int4\n16/01/14 20:26:52 DEBUG manager.SqlManager: Found column unitcost of type float8\n16/01/14 20:26:52 DEBUG manager.SqlManager: Found column unitprice of type float8\n16/01/14 20:26:52 DEBUG manager.SqlManager: Found column salesquantity of type int4\n16/01/14 20:26:52 DEBUG manager.SqlManager: Found column returnquantity of type int4\n16/01/14 20:26:52 DEBUG manager.SqlManager: Found column returnamount of type float8\n16/01/14 20:26:52 DEBUG manager.SqlManager: Found column discountquantity of type int4\n16/01/14 20:26:52 DEBUG manager.SqlManager: Found column discountamount of type float8\n16/01/14 20:26:52 DEBUG manager.SqlManager: Found column totalcost of type float8\n16/01/14 20:26:52 DEBUG manager.SqlManager: Found column salesamount of type float8\n16/01/14 20:26:52 DEBUG manager.SqlManager: Found column etlloadid of type int4\n16/01/14 20:26:52 DEBUG manager.SqlManager: Found column loaddate of type timestamp\n16/01/14 20:26:52 DEBUG manager.SqlManager: Found column updatedate of type timestamp\n16/01/14 20:26:52 INFO manager.DirectPostgresqlManager: Copy command is COPY (SELECT \"saleskey\", \"datekey\", \"channelkey\", \"storekey\", \"productkey\", \"promotionkey\", \"currencykey\", \"unitcost\", \"unitprice\", \"salesquantity\", \"returnquantity\", \"returnamount\", \"discountquantity\", \"discountamount\", \"totalcost\", \"salesamount\", \"etlloadid\", \"loaddate\", \"updatedate\" FROM \"factsales\" WHERE \"updatedate\" >= '2015-01-01' AND \"updatedate\" < '2016-01-14 20:26:52.542259') TO STDOUT WITH DELIMITER E'\\1' CSV ;\n16/01/14 20:26:52 INFO manager.DirectPostgresqlManager: Performing import of table factsales from database contoso\n16/01/14 20:26:52 DEBUG util.PostgreSQLUtils: Writing password to tempfile: /tmp/pgpass7086311846762757139.pgpass\n16/01/14 20:26:52 DEBUG manager.DirectPostgresqlManager: Starting psql with arguments:\n16/01/14 20:26:52 DEBUG manager.DirectPostgresqlManager: psql\n16/01/14 20:26:52 DEBUG manager.DirectPostgresqlManager: --tuples-only\n16/01/14 20:26:52 DEBUG manager.DirectPostgresqlManager: --quiet\n16/01/14 20:26:52 DEBUG manager.DirectPostgresqlManager: --username\n16/01/14 20:26:52 DEBUG manager.DirectPostgresqlManager: zeppelin\n16/01/14 20:26:52 DEBUG manager.DirectPostgresqlManager: --host\n16/01/14 20:26:52 DEBUG manager.DirectPostgresqlManager: localhost\n16/01/14 20:26:52 DEBUG manager.DirectPostgresqlManager: --port\n16/01/14 20:26:52 DEBUG manager.DirectPostgresqlManager: 5432\n16/01/14 20:26:52 DEBUG manager.DirectPostgresqlManager: contoso\n16/01/14 20:26:52 DEBUG manager.DirectPostgresqlManager: -f\n16/01/14 20:26:52 DEBUG manager.DirectPostgresqlManager: /tmp/tmp-7829508408906029653.sql\n16/01/14 20:26:52 DEBUG util.DirectImportUtils: Writing to filesystem: hdfs://sandbox.hortonworks.com:8020\n16/01/14 20:26:52 DEBUG util.DirectImportUtils: Creating destination directory _sqoop/6d1f95c88250437390c10cbb118d127d_factsales\n16/01/14 20:26:52 DEBUG io.SplittingOutputStream: Opening next output file: _sqoop/6d1f95c88250437390c10cbb118d127d_factsales/part-m-00000\n16/01/14 20:26:52 DEBUG manager.DirectPostgresqlManager: Starting stream sink\n16/01/14 20:26:52 DEBUG manager.DirectPostgresqlManager: Waiting for process completion\n16/01/14 20:26:53 INFO manager.DirectPostgresqlManager: Transfer loop complete.\n16/01/14 20:26:53 INFO manager.DirectPostgresqlManager: Transferred 230 bytes in 0.7597 seconds (302.7634 bytes/sec)\n16/01/14 20:26:53 DEBUG hive.HiveImport: Hive.inputTable: factsales\n16/01/14 20:26:53 DEBUG hive.HiveImport: Hive.outputTable: factsales\n16/01/14 20:26:53 DEBUG manager.SqlManager: Execute getColumnInfoRawQuery : SELECT t.* FROM \"factsales\" AS t LIMIT 1\n16/01/14 20:26:53 DEBUG manager.SqlManager: No connection paramenters specified. Using regular API for making connection.\n16/01/14 20:26:53 DEBUG manager.SqlManager: Using fetchSize for next query: 1000\n16/01/14 20:26:53 INFO manager.SqlManager: Executing SQL statement: SELECT t.* FROM \"factsales\" AS t LIMIT 1\n16/01/14 20:26:53 DEBUG manager.SqlManager: Found column saleskey of type [4, 10, 0]\n16/01/14 20:26:53 DEBUG manager.SqlManager: Found column datekey of type [93, 29, 6]\n16/01/14 20:26:53 DEBUG manager.SqlManager: Found column channelkey of type [4, 10, 0]\n16/01/14 20:26:53 DEBUG manager.SqlManager: Found column storekey of type [4, 10, 0]\n16/01/14 20:26:53 DEBUG manager.SqlManager: Found column productkey of type [4, 10, 0]\n16/01/14 20:26:53 DEBUG manager.SqlManager: Found column promotionkey of type [4, 10, 0]\n16/01/14 20:26:53 DEBUG manager.SqlManager: Found column currencykey of type [4, 10, 0]\n16/01/14 20:26:53 DEBUG manager.SqlManager: Found column unitcost of type [8, 17, 17]\n16/01/14 20:26:53 DEBUG manager.SqlManager: Found column unitprice of type [8, 17, 17]\n16/01/14 20:26:53 DEBUG manager.SqlManager: Found column salesquantity of type [4, 10, 0]\n16/01/14 20:26:53 DEBUG manager.SqlManager: Found column returnquantity of type [4, 10, 0]\n16/01/14 20:26:53 DEBUG manager.SqlManager: Found column returnamount of type [8, 17, 17]\n16/01/14 20:26:53 DEBUG manager.SqlManager: Found column discountquantity of type [4, 10, 0]\n16/01/14 20:26:53 DEBUG manager.SqlManager: Found column discountamount of type [8, 17, 17]\n16/01/14 20:26:53 DEBUG manager.SqlManager: Found column totalcost of type [8, 17, 17]\n16/01/14 20:26:53 DEBUG manager.SqlManager: Found column salesamount of type [8, 17, 17]\n16/01/14 20:26:53 DEBUG manager.SqlManager: Found column etlloadid of type [4, 10, 0]\n16/01/14 20:26:53 DEBUG manager.SqlManager: Found column loaddate of type [93, 29, 6]\n16/01/14 20:26:53 DEBUG manager.SqlManager: Found column updatedate of type [93, 29, 6]\n16/01/14 20:26:53 WARN hive.TableDefWriter: Column datekey had to be cast to a less precise type in Hive\n16/01/14 20:26:53 WARN hive.TableDefWriter: Column loaddate had to be cast to a less precise type in Hive\n16/01/14 20:26:53 WARN hive.TableDefWriter: Column updatedate had to be cast to a less precise type in Hive\n16/01/14 20:26:53 DEBUG hive.TableDefWriter: Create statement: CREATE TABLE IF NOT EXISTS `factsales` ( `saleskey` INT, `datekey` STRING, `channelkey` INT, `storekey` INT, `productkey` INT, `promotionkey` INT, `currencykey` INT, `unitcost` DOUBLE, `unitprice` DOUBLE, `salesquantity` INT, `returnquantity` INT, `returnamount` DOUBLE, `discountquantity` INT, `discountamount` DOUBLE, `totalcost` DOUBLE, `salesamount` DOUBLE, `etlloadid` INT, `loaddate` STRING, `updatedate` STRING) COMMENT 'Imported by sqoop on 2016/01/14 20:26:53' ROW FORMAT DELIMITED FIELDS TERMINATED BY '\\001' LINES TERMINATED BY '\\012' STORED AS TEXTFILE\n16/01/14 20:26:53 DEBUG hive.TableDefWriter: Load statement: LOAD DATA INPATH 'hdfs://sandbox.hortonworks.com:8020/user/zeppelin/factsales' INTO TABLE `factsales`\n16/01/14 20:26:53 INFO hive.HiveImport: Loading uploaded data into Hive\n16/01/14 20:26:53 DEBUG hive.HiveImport: Using in-process Hive instance.\n16/01/14 20:26:53 DEBUG util.SubprocessSecurityManager: Installing subprocess security manager\n\nLogging initialized using configuration in jar:file:/usr/hdp/2.3.2.0-2950/hive/lib/hive-common-1.2.1.2.3.2.0-2950.jar!/hive-log4j.properties\nOK\nTime taken: 2.41 seconds\nLoading data to table default.factsales\nchgrp: changing ownership of 'hdfs://sandbox.hortonworks.com:8020/apps/hive/warehouse/factsales/part-m-00000': User does not belong to hdfs\nTable default.factsales stats: [numFiles=1, numRows=0, totalSize=230, rawDataSize=0]\nOK\nTime taken: 7.278 seconds\n"},"dateCreated":"2016-01-13T03:01:11+0000","dateStarted":"2016-01-14T08:26:45+0000","dateFinished":"2016-01-14T08:27:15+0000","status":"FINISHED","progressUpdateIntervalMs":500,"$$hashKey":"object:1724"},{"title":"Confirm only 2 records picked up","text":"%hive\nSELECT * FROM factsales limit 2","dateUpdated":"2016-01-14T08:27:24+0000","config":{"colWidth":4,"graph":{"mode":"table","height":300,"optionOpen":false,"keys":[{"name":"factsales.saleskey","index":0,"aggr":"sum"}],"values":[{"name":"factsales.datekey","index":1,"aggr":"sum"}],"groups":[],"scatter":{"xAxis":{"name":"factsales.saleskey","index":0,"aggr":"sum"},"yAxis":{"name":"factsales.datekey","index":1,"aggr":"sum"}}},"editorMode":"ace/mode/scala","title":true,"enabled":true},"settings":{"params":{},"forms":{}},"jobName":"paragraph_1452697348070_1752886932","id":"20160113-150228_694373324","result":{"code":"SUCCESS","type":"TABLE","msg":"factsales.saleskey\tfactsales.datekey\tfactsales.channelkey\tfactsales.storekey\tfactsales.productkey\tfactsales.promotionkey\tfactsales.currencykey\tfactsales.unitcost\tfactsales.unitprice\tfactsales.salesquantity\tfactsales.returnquantity\tfactsales.returnamount\tfactsales.discountquantity\tfactsales.discountamount\tfactsales.totalcost\tfactsales.salesamount\tfactsales.etlloadid\tfactsales.loaddate\tfactsales.updatedate\n1\t2007-01-02 00:00:00\t1\t209\t956\t10\t1\t91.05\t198.0\t8\t0\t0.0\t1\t39.6\t728.4\t1544.4\t1\t2010-01-01 00:00:00\t2016-01-01 00:00:00\t\n2\t2007-02-12 00:00:00\t4\t308\t766\t2\t1\t10.15\t19.9\t4\t0\t0.0\t1\t0.995\t40.6\t78.605\t1\t2010-01-01 00:00:00\t2016-01-01 00:00:00\t\n","comment":"","msgTable":[[{"key":"factsales.datekey","value":"1"},{"key":"factsales.datekey","value":"2007-01-02 00:00:00"},{"key":"factsales.datekey","value":"1"},{"key":"factsales.datekey","value":"209"},{"key":"factsales.datekey","value":"956"},{"key":"factsales.datekey","value":"10"},{"key":"factsales.datekey","value":"1"},{"key":"factsales.datekey","value":"91.05"},{"key":"factsales.datekey","value":"198.0"},{"key":"factsales.datekey","value":"8"},{"key":"factsales.datekey","value":"0"},{"key":"factsales.datekey","value":"0.0"},{"key":"factsales.datekey","value":"1"},{"key":"factsales.datekey","value":"39.6"},{"key":"factsales.datekey","value":"728.4"},{"key":"factsales.datekey","value":"1544.4"},{"key":"factsales.datekey","value":"1"},{"key":"factsales.datekey","value":"2010-01-01 00:00:00"},{"key":"factsales.datekey","value":"2016-01-01 00:00:00"},{"key":"factsales.datekey","value":""}],[{"key":"factsales.channelkey","value":"2"},{"key":"factsales.channelkey","value":"2007-02-12 00:00:00"},{"key":"factsales.channelkey","value":"4"},{"key":"factsales.channelkey","value":"308"},{"key":"factsales.channelkey","value":"766"},{"key":"factsales.channelkey","value":"2"},{"key":"factsales.channelkey","value":"1"},{"key":"factsales.channelkey","value":"10.15"},{"key":"factsales.channelkey","value":"19.9"},{"key":"factsales.channelkey","value":"4"},{"key":"factsales.channelkey","value":"0"},{"key":"factsales.channelkey","value":"0.0"},{"key":"factsales.channelkey","value":"1"},{"key":"factsales.channelkey","value":"0.995"},{"key":"factsales.channelkey","value":"40.6"},{"key":"factsales.channelkey","value":"78.605"},{"key":"factsales.channelkey","value":"1"},{"key":"factsales.channelkey","value":"2010-01-01 00:00:00"},{"key":"factsales.channelkey","value":"2016-01-01 00:00:00"},{"key":"factsales.channelkey","value":""}]],"columnNames":[{"name":"factsales.saleskey","index":0,"aggr":"sum"},{"name":"factsales.datekey","index":1,"aggr":"sum"},{"name":"factsales.channelkey","index":2,"aggr":"sum"},{"name":"factsales.storekey","index":3,"aggr":"sum"},{"name":"factsales.productkey","index":4,"aggr":"sum"},{"name":"factsales.promotionkey","index":5,"aggr":"sum"},{"name":"factsales.currencykey","index":6,"aggr":"sum"},{"name":"factsales.unitcost","index":7,"aggr":"sum"},{"name":"factsales.unitprice","index":8,"aggr":"sum"},{"name":"factsales.salesquantity","index":9,"aggr":"sum"},{"name":"factsales.returnquantity","index":10,"aggr":"sum"},{"name":"factsales.returnamount","index":11,"aggr":"sum"},{"name":"factsales.discountquantity","index":12,"aggr":"sum"},{"name":"factsales.discountamount","index":13,"aggr":"sum"},{"name":"factsales.totalcost","index":14,"aggr":"sum"},{"name":"factsales.salesamount","index":15,"aggr":"sum"},{"name":"factsales.etlloadid","index":16,"aggr":"sum"},{"name":"factsales.loaddate","index":17,"aggr":"sum"},{"name":"factsales.updatedate","index":18,"aggr":"sum"}],"rows":[["1","2007-01-02 00:00:00","1","209","956","10","1","91.05","198.0","8","0","0.0","1","39.6","728.4","1544.4","1","2010-01-01 00:00:00","2016-01-01 00:00:00",""],["2","2007-02-12 00:00:00","4","308","766","2","1","10.15","19.9","4","0","0.0","1","0.995","40.6","78.605","1","2010-01-01 00:00:00","2016-01-01 00:00:00",""]]},"dateCreated":"2016-01-13T03:02:28+0000","dateStarted":"2016-01-14T08:27:24+0000","dateFinished":"2016-01-14T08:27:27+0000","status":"FINISHED","progressUpdateIntervalMs":500,"$$hashKey":"object:1725"},{"text":"%md\nIn Hive, move data from staging table to final table\n - first **remove the common records** from final table that are also found in staging table\n - **copy data** from staging table to final table\n - **truncate staging table**","dateUpdated":"2016-01-14T08:28:31+0000","config":{"colWidth":12,"graph":{"mode":"table","height":300,"optionOpen":false,"keys":[],"values":[],"groups":[],"scatter":{}},"editorMode":"ace/mode/markdown","editorHide":true,"enabled":true},"settings":{"params":{},"forms":{}},"jobName":"paragraph_1452697653323_2017824037","id":"20160113-150733_1778308435","result":{"code":"SUCCESS","type":"HTML","msg":"

In Hive, move data from staging table to final table

\n\n"},"dateCreated":"2016-01-13T03:07:33+0000","dateStarted":"2016-01-14T08:28:29+0000","dateFinished":"2016-01-14T08:28:30+0000","status":"FINISHED","progressUpdateIntervalMs":500,"$$hashKey":"object:1726"},{"text":"%hive\ndelete from factsales_final where saleskey in (select saleskey from factsales)","dateUpdated":"2016-01-14T08:28:38+0000","config":{"colWidth":4,"graph":{"mode":"table","height":300,"optionOpen":false,"keys":[],"values":[],"groups":[],"scatter":{}},"editorMode":"ace/mode/scala","enabled":true},"settings":{"params":{},"forms":{}},"jobName":"paragraph_1452697890835_1951768176","id":"20160113-151130_1609744197","result":{"code":"ERROR","type":"TEXT","msg":"The query did not generate a result set!"},"dateCreated":"2016-01-13T03:11:30+0000","dateStarted":"2016-01-14T08:28:38+0000","dateFinished":"2016-01-14T08:29:04+0000","status":"ERROR","progressUpdateIntervalMs":500,"$$hashKey":"object:1727"},{"text":"%hive\ninsert into factsales_final select * from factsales","dateUpdated":"2016-01-14T08:29:11+0000","config":{"colWidth":4,"graph":{"mode":"table","height":300,"optionOpen":false,"keys":[],"values":[],"groups":[],"scatter":{}},"editorMode":"ace/mode/scala","enabled":true},"settings":{"params":{},"forms":{}},"jobName":"paragraph_1452697920377_-595792210","id":"20160113-151200_1664420707","result":{"code":"ERROR","type":"TEXT","msg":"The query did not generate a result set!"},"dateCreated":"2016-01-13T03:12:00+0000","dateStarted":"2016-01-14T08:29:11+0000","dateFinished":"2016-01-14T08:29:28+0000","status":"ERROR","progressUpdateIntervalMs":500,"$$hashKey":"object:1728"},{"text":"%hive\ntruncate table factsales","dateUpdated":"2016-01-14T08:29:32+0000","config":{"colWidth":4,"graph":{"mode":"table","height":300,"optionOpen":false,"keys":[],"values":[],"groups":[],"scatter":{}},"editorMode":"ace/mode/scala","enabled":true},"settings":{"params":{},"forms":{}},"jobName":"paragraph_1452697971040_-1344837021","id":"20160113-151251_1614595733","result":{"code":"ERROR","type":"TEXT","msg":"The query did not generate a result set!"},"dateCreated":"2016-01-13T03:12:51+0000","dateStarted":"2016-01-14T08:29:32+0000","dateFinished":"2016-01-14T08:29:33+0000","status":"ERROR","progressUpdateIntervalMs":500,"$$hashKey":"object:1729"},{"text":"%md\nCheck the updated date on the records in final table in Hive to confirm the *updatedate* column was updated to *2016-01-01*","dateUpdated":"2016-01-13T03:17:33+0000","config":{"colWidth":12,"graph":{"mode":"table","height":300,"optionOpen":false,"keys":[],"values":[],"groups":[],"scatter":{}},"editorMode":"ace/mode/markdown","editorHide":true,"enabled":true},"settings":{"params":{},"forms":{}},"jobName":"paragraph_1452697998079_1662557952","id":"20160113-151318_1279235236","result":{"code":"SUCCESS","type":"HTML","msg":"

Check the updated date on the records in final table in Hive to confirm the updatedate column was updated to 2016-01-01

\n"},"dateCreated":"2016-01-13T03:13:18+0000","dateStarted":"2016-01-13T03:17:31+0000","dateFinished":"2016-01-13T03:17:31+0000","status":"FINISHED","progressUpdateIntervalMs":500,"$$hashKey":"object:1730"},{"text":"%hive\nselect * from factsales_final where saleskey in (1,2)","dateUpdated":"2016-01-14T08:29:42+0000","config":{"colWidth":12,"graph":{"mode":"table","height":300,"optionOpen":false,"keys":[],"values":[],"groups":[],"scatter":{}},"enabled":true,"editorMode":"ace/mode/scala"},"settings":{"params":{},"forms":{}},"jobName":"paragraph_1452698183248_1147103339","id":"20160113-151623_1092942102","result":{"code":"SUCCESS","type":"TABLE","msg":"factsales_final.saleskey\tfactsales_final.datekey\tfactsales_final.channelkey\tfactsales_final.storekey\tfactsales_final.productkey\tfactsales_final.promotionkey\tfactsales_final.currencykey\tfactsales_final.unitcost\tfactsales_final.unitprice\tfactsales_final.salesquantity\tfactsales_final.returnquantity\tfactsales_final.returnamount\tfactsales_final.discountquantity\tfactsales_final.discountamount\tfactsales_final.totalcost\tfactsales_final.salesamount\tfactsales_final.etlloadid\tfactsales_final.loaddate\tfactsales_final.updatedate\n1\t2007-01-02 00:00:00.0\t1\t209\t956\t10\t1\t91.05000305175781\t198.0\t8\t0\t0.0\t1\t39.599998474121094\t728.4000244140625\t1544.4000244140625\t1\t2010-01-01 00:00:00.0\t2016-01-01 00:00:00.0\t\n2\t2007-02-12 00:00:00.0\t4\t308\t766\t2\t1\t10.149999618530273\t19.899999618530273\t4\t0\t0.0\t1\t0.9950000047683716\t40.599998474121094\t78.6050033569336\t1\t2010-01-01 00:00:00.0\t2016-01-01 00:00:00.0\t\n","comment":"","msgTable":[[{"key":"factsales_final.datekey","value":"1"},{"key":"factsales_final.datekey","value":"2007-01-02 00:00:00.0"},{"key":"factsales_final.datekey","value":"1"},{"key":"factsales_final.datekey","value":"209"},{"key":"factsales_final.datekey","value":"956"},{"key":"factsales_final.datekey","value":"10"},{"key":"factsales_final.datekey","value":"1"},{"key":"factsales_final.datekey","value":"91.05000305175781"},{"key":"factsales_final.datekey","value":"198.0"},{"key":"factsales_final.datekey","value":"8"},{"key":"factsales_final.datekey","value":"0"},{"key":"factsales_final.datekey","value":"0.0"},{"key":"factsales_final.datekey","value":"1"},{"key":"factsales_final.datekey","value":"39.599998474121094"},{"key":"factsales_final.datekey","value":"728.4000244140625"},{"key":"factsales_final.datekey","value":"1544.4000244140625"},{"key":"factsales_final.datekey","value":"1"},{"key":"factsales_final.datekey","value":"2010-01-01 00:00:00.0"},{"key":"factsales_final.datekey","value":"2016-01-01 00:00:00.0"},{"key":"factsales_final.datekey","value":""}],[{"key":"factsales_final.channelkey","value":"2"},{"key":"factsales_final.channelkey","value":"2007-02-12 00:00:00.0"},{"key":"factsales_final.channelkey","value":"4"},{"key":"factsales_final.channelkey","value":"308"},{"key":"factsales_final.channelkey","value":"766"},{"key":"factsales_final.channelkey","value":"2"},{"key":"factsales_final.channelkey","value":"1"},{"key":"factsales_final.channelkey","value":"10.149999618530273"},{"key":"factsales_final.channelkey","value":"19.899999618530273"},{"key":"factsales_final.channelkey","value":"4"},{"key":"factsales_final.channelkey","value":"0"},{"key":"factsales_final.channelkey","value":"0.0"},{"key":"factsales_final.channelkey","value":"1"},{"key":"factsales_final.channelkey","value":"0.9950000047683716"},{"key":"factsales_final.channelkey","value":"40.599998474121094"},{"key":"factsales_final.channelkey","value":"78.6050033569336"},{"key":"factsales_final.channelkey","value":"1"},{"key":"factsales_final.channelkey","value":"2010-01-01 00:00:00.0"},{"key":"factsales_final.channelkey","value":"2016-01-01 00:00:00.0"},{"key":"factsales_final.channelkey","value":""}]],"columnNames":[{"name":"factsales_final.saleskey","index":0,"aggr":"sum"},{"name":"factsales_final.datekey","index":1,"aggr":"sum"},{"name":"factsales_final.channelkey","index":2,"aggr":"sum"},{"name":"factsales_final.storekey","index":3,"aggr":"sum"},{"name":"factsales_final.productkey","index":4,"aggr":"sum"},{"name":"factsales_final.promotionkey","index":5,"aggr":"sum"},{"name":"factsales_final.currencykey","index":6,"aggr":"sum"},{"name":"factsales_final.unitcost","index":7,"aggr":"sum"},{"name":"factsales_final.unitprice","index":8,"aggr":"sum"},{"name":"factsales_final.salesquantity","index":9,"aggr":"sum"},{"name":"factsales_final.returnquantity","index":10,"aggr":"sum"},{"name":"factsales_final.returnamount","index":11,"aggr":"sum"},{"name":"factsales_final.discountquantity","index":12,"aggr":"sum"},{"name":"factsales_final.discountamount","index":13,"aggr":"sum"},{"name":"factsales_final.totalcost","index":14,"aggr":"sum"},{"name":"factsales_final.salesamount","index":15,"aggr":"sum"},{"name":"factsales_final.etlloadid","index":16,"aggr":"sum"},{"name":"factsales_final.loaddate","index":17,"aggr":"sum"},{"name":"factsales_final.updatedate","index":18,"aggr":"sum"}],"rows":[["1","2007-01-02 00:00:00.0","1","209","956","10","1","91.05000305175781","198.0","8","0","0.0","1","39.599998474121094","728.4000244140625","1544.4000244140625","1","2010-01-01 00:00:00.0","2016-01-01 00:00:00.0",""],["2","2007-02-12 00:00:00.0","4","308","766","2","1","10.149999618530273","19.899999618530273","4","0","0.0","1","0.9950000047683716","40.599998474121094","78.6050033569336","1","2010-01-01 00:00:00.0","2016-01-01 00:00:00.0",""]]},"dateCreated":"2016-01-13T03:16:23+0000","dateStarted":"2016-01-14T08:29:42+0000","dateFinished":"2016-01-14T08:29:46+0000","status":"FINISHED","progressUpdateIntervalMs":500,"$$hashKey":"object:1731"},{"text":"%md\n#### 2. complete\n\nAt this point we have shown how you can bulk import data from EDW/RDBMS into Hive and then incrementally keep the Hive tables periodically updated","dateUpdated":"2016-01-15T04:05:50+0000","config":{"colWidth":12,"graph":{"mode":"table","height":300,"optionOpen":false,"keys":[],"values":[],"groups":[],"scatter":{}},"editorMode":"ace/mode/markdown","editorHide":true,"enabled":true},"settings":{"params":{},"forms":{}},"jobName":"paragraph_1452698189856_-1407629358","id":"20160113-151629_1265697908","result":{"code":"SUCCESS","type":"HTML","msg":"

2. complete

\n

At this point we have shown how you can bulk import data from EDW/RDBMS into Hive and then incrementally keep the Hive tables periodically updated

\n"},"dateCreated":"2016-01-13T03:16:29+0000","dateStarted":"2016-01-15T04:05:47+0000","dateFinished":"2016-01-15T04:05:48+0000","status":"FINISHED","progressUpdateIntervalMs":500,"$$hashKey":"object:1732"},{"text":"%md\n#### Step 3. and 4.: Ingest product-related tweets and weblogs into HDFS via Nifi\n\na) Follow steps below to install Nifi via Ambari, monitor certain tweets and push to HDFS, Hive and Solr:\n\n- Download Nifi Ambari service folder\n```\nVERSION=`hdp-select status hadoop-client | sed 's/hadoop-client - \\([0-9]\\.[0-9]\\).*/\\1/'`\nsudo git clone https://github.com/abajwa-hw/ambari-nifi-service.git /var/lib/ambari-server/resources/stacks/HDP/$VERSION/services/NIFI \nsudo service ambari restart\n```\n- To install Nifi, start the 'Install Wizard': Open Ambari (http://sandbox.hortonworks.com:8080) then:\nOn bottom left -> Actions -> Add service -> check NiFi server -> Next -> Next -> Change any config you like (e.g. install dir, port, setup_prebuilt or values in nifi.properties) -> Next -> Deploy. This will kick off the install which will run for 5-10min.\n\n- Now open Nifi webui (http://sandbox.hortonworks.com:9090)\n- Download prebuilt Single_view_demo.xml template to your laptop from [here](https://github.com/abajwa-hw/single-view-demo/raw/master/template/Single_view_demo.xml)\n- Import the Single_view_demo.xml template info Nifi\n- Fill out env specific configs e.g. your Twitter credentials (see note below)\n- Do not start the flows yet\n\n\nb) More detailed instructions on how to install Nifi on sandbox and import a template flow to ingest tweets available at [https://community.hortonworks.com/articles/1282/sample-hdfnifi-flow-to-push-tweets-into-solrbanana.html](https://community.hortonworks.com/articles/1282/sample-hdfnifi-flow-to-push-tweets-into-solrbanana.html)\n\nc) Note that to monitor tweets, Twitter requires you to have an account and obtain developer keys by registering an \"app\". Follow steps below to do this:\n- Create a Twitter account and app and get your consumer key/token and access keys/tokens:\n - Open https://apps.twitter.com \n - sign in\n - create new app\n - fill anything\n - create access tokens\n","dateUpdated":"2016-01-15T04:06:16+0000","config":{"colWidth":12,"graph":{"mode":"table","height":300,"optionOpen":false,"keys":[],"values":[],"groups":[],"scatter":{}},"editorMode":"ace/mode/markdown","editorHide":true,"enabled":true},"settings":{"params":{},"forms":{}},"jobName":"paragraph_1452698326170_-1702767869","id":"20160113-151846_689314597","result":{"code":"SUCCESS","type":"HTML","msg":"

Step 3. and 4.: Ingest product-related tweets and weblogs into HDFS via Nifi

\n

a) Follow steps below to install Nifi via Ambari, monitor certain tweets and push to HDFS, Hive and Solr:

\n\n

b) More detailed instructions on how to install Nifi on sandbox and import a template flow to ingest tweets available at https://community.hortonworks.com/articles/1282/sample-hdfnifi-flow-to-push-tweets-into-solrbanana.html

\n

c) Note that to monitor tweets, Twitter requires you to have an account and obtain developer keys by registering an “app”. Follow steps below to do this:

\n\n"},"dateCreated":"2016-01-13T03:18:46+0000","dateStarted":"2016-01-15T04:06:14+0000","dateFinished":"2016-01-15T04:06:15+0000","status":"FINISHED","progressUpdateIntervalMs":500,"$$hashKey":"object:1733"},{"title":"Create script to Generate weblog. Copy to a dir accessible by nifi","text":"%sh\ncp /home/zeppelin/single-view-demo/createlog-psql.sh /tmp\ncp /home/zeppelin/single-view-demo/DimCustomer.csv /tmp\n\necho \"/tmp/createlog-psql.sh /tmp/data/DimCustomer.csv 20 >> /tmp/webtraffic.log\" >> /tmp/generate-weblog.sh\n\nchmod 777 /tmp/createlog-psql.sh\nchmod 777 /tmp/generate-weblog.sh\nchmod 444 /tmp/DimCustomer.csv\n","dateUpdated":"2016-01-15T04:07:00+0000","config":{"colWidth":12,"graph":{"mode":"table","height":300,"optionOpen":false,"keys":[],"values":[],"groups":[],"scatter":{}},"editorMode":"ace/mode/sh","title":true,"editorHide":false,"enabled":true},"settings":{"params":{},"forms":{}},"jobName":"paragraph_1452714134778_453431803","id":"20160113-194214_575626716","result":{"code":"SUCCESS","type":"TEXT","msg":""},"dateCreated":"2016-01-13T07:42:14+0000","dateStarted":"2016-01-14T10:15:57+0000","dateFinished":"2016-01-14T10:15:59+0000","status":"FINISHED","progressUpdateIntervalMs":500,"$$hashKey":"object:1734"},{"text":"%md\nNow start the flows in Nifi using the play button to:\n - simulate and ingest the tweets under /tmp/weblog_staging in HDFS\n - ingest the weblogs under /tmp/tweets_staging in HDFS","dateUpdated":"2016-01-15T03:25:29+0000","config":{"colWidth":12,"graph":{"mode":"table","height":300,"optionOpen":false,"keys":[],"values":[],"groups":[],"scatter":{}},"editorMode":"ace/mode/markdown","editorHide":true,"enabled":true},"settings":{"params":{},"forms":{}},"jobName":"paragraph_1452714525669_1209213271","id":"20160113-194845_498349085","result":{"code":"SUCCESS","type":"HTML","msg":"

Now start the flows in Nifi using the play button to:

\n\n"},"dateCreated":"2016-01-13T07:48:45+0000","dateStarted":"2016-01-15T03:25:09+0000","dateFinished":"2016-01-15T03:27:26+0000","status":"FINISHED","progressUpdateIntervalMs":500,"$$hashKey":"object:1735"},{"text":"%md\nOnce data has started to flow into the tweets and weblog HDFS locations, lets: \n - update permissions on the HDFS dirs\n - create hive tables for tweets and weblog\n - check that hive tables contain data","dateUpdated":"2016-01-15T04:09:23+0000","config":{"colWidth":12,"graph":{"mode":"table","height":300,"optionOpen":false,"keys":[],"values":[],"groups":[],"scatter":{}},"editorMode":"ace/mode/markdown","editorHide":true,"tableHide":false,"enabled":true},"settings":{"params":{},"forms":{}},"jobName":"paragraph_1452716208916_-1327044377","id":"20160113-201648_2039794982","result":{"code":"SUCCESS","type":"HTML","msg":"

Once data has started to flow into the tweets and weblog HDFS locations, lets:

\n\n"},"dateCreated":"2016-01-13T08:16:48+0000","dateStarted":"2016-01-15T04:09:20+0000","dateFinished":"2016-01-15T04:09:21+0000","status":"FINISHED","progressUpdateIntervalMs":500,"$$hashKey":"object:1736"},{"text":"%sh\nsudo -u hdfs hadoop fs -chmod -R 777 /tmp/tweets_staging\nsudo -u hdfs hadoop fs -chmod -R 777 /tmp/weblog_staging","dateUpdated":"2016-01-14T10:26:56+0000","config":{"colWidth":12,"graph":{"mode":"table","height":300,"optionOpen":false,"keys":[],"values":[],"groups":[],"scatter":{}},"editorMode":"ace/mode/sh","enabled":true},"settings":{"params":{},"forms":{}},"jobName":"paragraph_1452713882797_-396249179","id":"20160113-193802_1253775053","result":{"code":"SUCCESS","type":"TEXT","msg":""},"dateCreated":"2016-01-13T07:38:02+0000","dateStarted":"2016-01-14T10:26:56+0000","dateFinished":"2016-01-14T10:27:04+0000","status":"FINISHED","progressUpdateIntervalMs":500,"$$hashKey":"object:1737"},{"text":"%hive\ncreate table if not exists tweets(\n tweet_id bigint, \n created_unixtime bigint, \n created_time string, \n displayname string, \n msg string,\n fulltext string\n)\nrow format delimited fields terminated by \"|\"\nlocation \"/tmp/tweets_staging\"","dateUpdated":"2016-01-14T10:27:06+0000","config":{"colWidth":12,"graph":{"mode":"table","height":300,"optionOpen":false,"keys":[],"values":[],"groups":[],"scatter":{}},"editorMode":"ace/mode/scala","enabled":true},"settings":{"params":{},"forms":{}},"jobName":"paragraph_1452699657353_-1066675078","id":"20160113-154057_1955065161","result":{"code":"ERROR","type":"TEXT","msg":"The query did not generate a result set!"},"dateCreated":"2016-01-13T03:40:57+0000","dateStarted":"2016-01-14T10:27:07+0000","dateFinished":"2016-01-14T10:27:16+0000","status":"ERROR","progressUpdateIntervalMs":500,"$$hashKey":"object:1738"},{"text":"%hive\nselect * from tweets limit 5","dateUpdated":"2016-01-14T10:27:17+0000","config":{"colWidth":12,"graph":{"mode":"table","height":300,"optionOpen":false,"keys":[],"values":[],"groups":[],"scatter":{}},"editorMode":"ace/mode/scala","enabled":true},"settings":{"params":{},"forms":{}},"jobName":"paragraph_1452713839889_1762530927","id":"20160113-193719_921494912","result":{"code":"SUCCESS","type":"TABLE","msg":"tweets.tweet_id\ttweets.created_unixtime\ttweets.created_time\ttweets.displayname\ttweets.msg\ttweets.fulltext\n687741680624267270\t1452805368940\tThu Jan 14 21:02:48 +0000 2016\toot47594\thttps://t.co/RL7RuWk8ii NEW BLACK & SLATE FACTORY UNLOCKED AT&T 64GB APPLE IPHONE 5 PHONE L661 #iphone #ios92 #apple #iphone6s #iphone7\t{\"created_at\":\"Thu Jan 14 21:02:48 +0000 2016\",\"id\":687741680624267270,\"id_str\":\"687741680624267270\",\"text\":\"https:\\/\\/t.co\\/RL7RuWk8ii NEW BLACK & SLATE FACTORY UNLOCKED AT&T 64GB APPLE IPHONE 5 PHONE L661 #iphone #ios92 #apple #iphone6s #iphone7\",\"source\":\"\\u003ca href=\\\"http:\\/\\/ifttt.com\\\" rel=\\\"nofollow\\\"\\u003eIFTTT\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":4758579715,\"id_str\":\"4758579715\",\"name\":\"Lorena\",\"screen_name\":\"oot47594\",\"location\":null,\"url\":null,\"description\":null,\"protected\":false,\"verified\":false,\"followers_count\":2,\"friends_count\":0,\"listed_count\":7,\"favourites_count\":0,\"statuses_count\":302,\"created_at\":\"Thu Jan 14 14:58:06 +0000 2016\",\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":\"\",\"profile_background_image_url_https\":\"\",\"profile_background_tile\":false,\"profile_link_color\":\"2B7BB9\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/687650611517509632\\/GmSnIsLb_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/687650611517509632\\/GmSnIsLb_normal.jpg\",\"default_profile\":true,\"default_profile_image\":false,\"following\":null,\"follow_request_sent\":null,\"notifications\":null},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[{\"text\":\"iphone\",\"indices\":[103,110]},{\"text\":\"ios92\",\"indices\":[111,117]},{\"text\":\"apple\",\"indices\":[118,124]},{\"text\":\"iphone6s\",\"indices\":[125,134]},{\"text\":\"iphone7\",\"indices\":[135,143]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/RL7RuWk8ii\",\"expanded_url\":\"https:\\/\\/bitly.com\\/iphonecelebgiveaway\",\"display_url\":\"bitly.com\\/iphonecelebgiv\\u2026\",\"indices\":[0,23]}],\"user_mentions\":[],\"symbols\":[]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"filter_level\":\"low\",\"lang\":\"en\",\"timestamp_ms\":\"1452805368940\"}\t\n687741683065339908\t1452805369522\tThu Jan 14 21:02:49 +0000 2016\toot47594\thttps://t.co/RL7RuWk8ii Apple iPhone 5 - 16GB - Black & Slate (Sprint) Smartphone #iphone #ios92 #apple #iphone6s #iphone7\t{\"created_at\":\"Thu Jan 14 21:02:49 +0000 2016\",\"id\":687741683065339908,\"id_str\":\"687741683065339908\",\"text\":\"https:\\/\\/t.co\\/RL7RuWk8ii Apple iPhone 5 - 16GB - Black & Slate (Sprint) Smartphone #iphone #ios92 #apple #iphone6s #iphone7\",\"source\":\"\\u003ca href=\\\"http:\\/\\/ifttt.com\\\" rel=\\\"nofollow\\\"\\u003eIFTTT\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":4758579715,\"id_str\":\"4758579715\",\"name\":\"Lorena\",\"screen_name\":\"oot47594\",\"location\":null,\"url\":null,\"description\":null,\"protected\":false,\"verified\":false,\"followers_count\":2,\"friends_count\":0,\"listed_count\":7,\"favourites_count\":0,\"statuses_count\":303,\"created_at\":\"Thu Jan 14 14:58:06 +0000 2016\",\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":\"\",\"profile_background_image_url_https\":\"\",\"profile_background_tile\":false,\"profile_link_color\":\"2B7BB9\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/687650611517509632\\/GmSnIsLb_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/687650611517509632\\/GmSnIsLb_normal.jpg\",\"default_profile\":true,\"default_profile_image\":false,\"following\":null,\"follow_request_sent\":null,\"notifications\":null},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[{\"text\":\"iphone\",\"indices\":[86,93]},{\"text\":\"ios92\",\"indices\":[94,100]},{\"text\":\"apple\",\"indices\":[101,107]},{\"text\":\"iphone6s\",\"indices\":[108,117]},{\"text\":\"iphone7\",\"indices\":[118,126]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/RL7RuWk8ii\",\"expanded_url\":\"https:\\/\\/bitly.com\\/iphonecelebgiveaway\",\"display_url\":\"bitly.com\\/iphonecelebgiv\\u2026\",\"indices\":[0,23]}],\"user_mentions\":[],\"symbols\":[]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"filter_level\":\"low\",\"lang\":\"en\",\"timestamp_ms\":\"1452805369522\"}\t\n687741685510574080\t1452805370105\tThu Jan 14 21:02:50 +0000 2016\tJajaj12Marco\tRT @FUT16_PIRANHA: Winner in 15 Minutes https://t.co/c4q3VAXN8H\t{\"created_at\":\"Thu Jan 14 21:02:50 +0000 2016\",\"id\":687741685510574080,\"id_str\":\"687741685510574080\",\"text\":\"RT @FUT16_PIRANHA: Winner in 15 Minutes https:\\/\\/t.co\\/c4q3VAXN8H\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\/download\\/iphone\\\" rel=\\\"nofollow\\\"\\u003eTwitter for iPhone\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":4778978835,\"id_str\":\"4778978835\",\"name\":\"Marcos\",\"screen_name\":\"Jajaj12Marco\",\"location\":null,\"url\":null,\"description\":null,\"protected\":false,\"verified\":false,\"followers_count\":2,\"friends_count\":27,\"listed_count\":0,\"favourites_count\":17,\"statuses_count\":21,\"created_at\":\"Tue Jan 12 00:11:30 +0000 2016\",\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":\"\",\"profile_background_image_url_https\":\"\",\"profile_background_tile\":false,\"profile_link_color\":\"2B7BB9\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"profile_image_url\":\"http:\\/\\/abs.twimg.com\\/sticky\\/default_profile_images\\/default_profile_1_normal.png\",\"profile_image_url_https\":\"https:\\/\\/abs.twimg.com\\/sticky\\/default_profile_images\\/default_profile_1_normal.png\",\"default_profile\":true,\"default_profile_image\":true,\"following\":null,\"follow_request_sent\":null,\"notifications\":null},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweeted_status\":{\"created_at\":\"Thu Jan 14 20:44:30 +0000 2016\",\"id\":687737073017708544,\"id_str\":\"687737073017708544\",\"text\":\"Winner in 15 Minutes https:\\/\\/t.co\\/c4q3VAXN8H\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\/download\\/iphone\\\" rel=\\\"nofollow\\\"\\u003eTwitter for iPhone\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":2788847989,\"id_str\":\"2788847989\",\"name\":\"Piranha\",\"screen_name\":\"FUT16_PIRANHA\",\"location\":\"Egypt\",\"url\":null,\"description\":\"For Cheap, Reliable Coins Make sure to Go http:\\/\\/Gofifacoins.com Automated Coins Delivery & Use Code ( Piranha ) For 5% OFF , Follow @UltimateKing25 #1 LAD \\ufdfd\",\"protected\":false,\"verified\":false,\"followers_count\":12834,\"friends_count\":259,\"listed_count\":9,\"favourites_count\":2787,\"statuses_count\":29098,\"created_at\":\"Wed Sep 03 23:45:29 +0000 2014\",\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/684400354763653120\\/3hA5eYAK_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/684400354763653120\\/3hA5eYAK_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/2788847989\\/1452008735\",\"default_profile\":true,\"default_profile_image\":false,\"following\":null,\"follow_request_sent\":null,\"notifications\":null},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"quoted_status_id\":687733252065476608,\"quoted_status_id_str\":\"687733252065476608\",\"quoted_status\":{\"created_at\":\"Thu Jan 14 20:29:19 +0000 2016\",\"id\":687733252065476608,\"id_str\":\"687733252065476608\",\"text\":\"Quick 50K XboxOne & PS4 Giveaway Or: 20 Million IOS, Just Retweet & Follow me, Winner in 30 Minutes ;) https:\\/\\/t.co\\/mh9UbLYQky\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\/download\\/iphone\\\" rel=\\\"nofollow\\\"\\u003eTwitter for iPhone\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":2788847989,\"id_str\":\"2788847989\",\"name\":\"Piranha\",\"screen_name\":\"FUT16_PIRANHA\",\"location\":\"Egypt\",\"url\":null,\"description\":\"For Cheap, Reliable Coins Make sure to Go http:\\/\\/Gofifacoins.com Automated Coins Delivery & Use Code ( Piranha ) For 5% OFF , Follow @UltimateKing25 #1 LAD \\ufdfd\",\"protected\":false,\"verified\":false,\"followers_count\":12834,\"friends_count\":259,\"listed_count\":9,\"favourites_count\":2787,\"statuses_count\":29098,\"created_at\":\"Wed Sep 03 23:45:29 +0000 2014\",\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/684400354763653120\\/3hA5eYAK_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/684400354763653120\\/3hA5eYAK_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/2788847989\\/1452008735\",\"default_profile\":true,\"default_profile_image\":false,\"following\":null,\"follow_request_sent\":null,\"notifications\":null},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"urls\":[],\"user_mentions\":[],\"symbols\":[],\"media\":[{\"id\":687733235799994368,\"id_str\":\"687733235799994368\",\"indices\":[111,134],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/CYtRu_QWsAAAmma.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/CYtRu_QWsAAAmma.jpg\",\"url\":\"https:\\/\\/t.co\\/mh9UbLYQky\",\"display_url\":\"pic.twitter.com\\/mh9UbLYQky\",\"expanded_url\":\"http:\\/\\/twitter.com\\/FUT16_PIRANHA\\/status\\/687733252065476608\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":577,\"h\":1024,\"resize\":\"fit\"},\"large\":{\"w\":577,\"h\":1024,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":603,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":687733235799994368,\"id_str\":\"687733235799994368\",\"indices\":[111,134],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/CYtRu_QWsAAAmma.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/CYtRu_QWsAAAmma.jpg\",\"url\":\"https:\\/\\/t.co\\/mh9UbLYQky\",\"display_url\":\"pic.twitter.com\\/mh9UbLYQky\",\"expanded_url\":\"http:\\/\\/twitter.com\\/FUT16_PIRANHA\\/status\\/687733252065476608\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":577,\"h\":1024,\"resize\":\"fit\"},\"large\":{\"w\":577,\"h\":1024,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":603,\"resize\":\"fit\"}}},{\"id\":687733235846131712,\"id_str\":\"687733235846131712\",\"indices\":[111,134],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/CYtRu_bWsAAHTg1.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/CYtRu_bWsAAHTg1.jpg\",\"url\":\"https:\\/\\/t.co\\/mh9UbLYQky\",\"display_url\":\"pic.twitter.com\\/mh9UbLYQky\",\"expanded_url\":\"http:\\/\\/twitter.com\\/FUT16_PIRANHA\\/status\\/687733252065476608\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":1024,\"h\":576,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":337,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":191,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"filter_level\":\"low\",\"lang\":\"en\"},\"is_quote_status\":true,\"retweet_count\":7,\"favorite_count\":6,\"entities\":{\"hashtags\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/c4q3VAXN8H\",\"expanded_url\":\"https:\\/\\/twitter.com\\/fut16_piranha\\/status\\/687733252065476608\",\"display_url\":\"twitter.com\\/fut16_piranha\\/\\u2026\",\"indices\":[21,44]}],\"user_mentions\":[],\"symbols\":[]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"filter_level\":\"low\",\"lang\":\"en\"},\"is_quote_status\":true,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/c4q3VAXN8H\",\"expanded_url\":\"https:\\/\\/twitter.com\\/fut16_piranha\\/status\\/687733252065476608\",\"display_url\":\"twitter.com\\/fut16_piranha\\/\\u2026\",\"indices\":[40,63]}],\"user_mentions\":[{\"screen_name\":\"FUT16_PIRANHA\",\"name\":\"Piranha\",\"id\":2788847989,\"id_str\":\"2788847989\",\"indices\":[3,17]}],\"symbols\":[]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"filter_level\":\"low\",\"lang\":\"en\",\"timestamp_ms\":\"1452805370105\"}\t\n687741690967396353\t1452805371406\tThu Jan 14 21:02:51 +0000 2016\tlaciccina\tPassare la serata a sistemare il povero MacBook cercando di farlo tornare in forma... 😒\t{\"created_at\":\"Thu Jan 14 21:02:51 +0000 2016\",\"id\":687741690967396353,\"id_str\":\"687741690967396353\",\"text\":\"Passare la serata a sistemare il povero MacBook cercando di farlo tornare in forma... \\ud83d\\ude12\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\/download\\/iphone\\\" rel=\\\"nofollow\\\"\\u003eTwitter for iPhone\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":57104939,\"id_str\":\"57104939\",\"name\":\"Cinzia Risaliti\",\"screen_name\":\"laciccina\",\"location\":\"Prato - Toscana \",\"url\":\"http:\\/\\/www.solaconio.it\",\"description\":\"Faccio un lavoro che non so spiegare alla nonna e agli amici poco 2.0. \t\n687741697678282753\t1452805373006\tThu Jan 14 21:02:53 +0000 2016\tmsiphone6\tNEW BLACK & SLATE FACTORY UNLOCKED AT&T 64GB APPLE IPHONE 5 PHONE L661 via https://t.co/CV8TDWPSaF #iphone #iphone6 #iphone6s #iphone6plus\t{\"created_at\":\"Thu Jan 14 21:02:53 +0000 2016\",\"id\":687741697678282753,\"id_str\":\"687741697678282753\",\"text\":\"NEW BLACK & SLATE FACTORY UNLOCKED AT&T 64GB APPLE IPHONE 5 PHONE L661 via https:\\/\\/t.co\\/CV8TDWPSaF #iphone #iphone6 #iphone6s #iphone6plus\",\"source\":\"\\u003ca href=\\\"http:\\/\\/ifttt.com\\\" rel=\\\"nofollow\\\"\\u003eIFTTT\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":4092782779,\"id_str\":\"4092782779\",\"name\":\"ms.iphone\",\"screen_name\":\"msiphone6\",\"location\":null,\"url\":\"http:\\/\\/iphone6sgiveaway.weebly.com\\/\",\"description\":\"Check my iPhone Giveaway!\",\"protected\":false,\"verified\":false,\"followers_count\":5,\"friends_count\":40,\"listed_count\":3,\"favourites_count\":0,\"statuses_count\":7932,\"created_at\":\"Sun Nov 01 16:55:27 +0000 2015\",\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/660864314945835008\\/Za1-nMsG_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/660864314945835008\\/Za1-nMsG_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/4092782779\\/1446397372\",\"default_profile\":true,\"default_profile_image\":false,\"following\":null,\"follow_request_sent\":null,\"notifications\":null},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[{\"text\":\"iphone\",\"indices\":[107,114]},{\"text\":\"iphone6\",\"indices\":[115,123]},{\"text\":\"iphone6s\",\"indices\":[124,133]},{\"text\":\"iphone6plus\",\"indices\":[134,146]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/CV8TDWPSaF\",\"expanded_url\":\"http:\\/\\/ift.tt\\/1XwBHXc\",\"display_url\":\"ift.tt\\/1XwBHXc\",\"indices\":[83,106]}],\"user_mentions\":[],\"symbols\":[]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"filter_level\":\"low\",\"lang\":\"en\",\"timestamp_ms\":\"1452805373006\"}\t\n","comment":"","msgTable":[[{"key":"tweets.created_unixtime","value":"687741680624267270"},{"key":"tweets.created_unixtime","value":"1452805368940"},{"key":"tweets.created_unixtime","value":"Thu Jan 14 21:02:48 +0000 2016"},{"key":"tweets.created_unixtime","value":"oot47594"},{"key":"tweets.created_unixtime","value":"https://t.co/RL7RuWk8ii NEW BLACK & SLATE FACTORY UNLOCKED AT&T 64GB APPLE IPHONE 5 PHONE L661 #iphone #ios92 #apple #iphone6s #iphone7"},{"key":"tweets.created_unixtime","value":"{\"created_at\":\"Thu Jan 14 21:02:48 +0000 2016\",\"id\":687741680624267270,\"id_str\":\"687741680624267270\",\"text\":\"https:\\/\\/t.co\\/RL7RuWk8ii NEW BLACK & SLATE FACTORY UNLOCKED AT&T 64GB APPLE IPHONE 5 PHONE L661 #iphone #ios92 #apple #iphone6s #iphone7\",\"source\":\"\\u003ca href=\\\"http:\\/\\/ifttt.com\\\" rel=\\\"nofollow\\\"\\u003eIFTTT\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":4758579715,\"id_str\":\"4758579715\",\"name\":\"Lorena\",\"screen_name\":\"oot47594\",\"location\":null,\"url\":null,\"description\":null,\"protected\":false,\"verified\":false,\"followers_count\":2,\"friends_count\":0,\"listed_count\":7,\"favourites_count\":0,\"statuses_count\":302,\"created_at\":\"Thu Jan 14 14:58:06 +0000 2016\",\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":\"\",\"profile_background_image_url_https\":\"\",\"profile_background_tile\":false,\"profile_link_color\":\"2B7BB9\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/687650611517509632\\/GmSnIsLb_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/687650611517509632\\/GmSnIsLb_normal.jpg\",\"default_profile\":true,\"default_profile_image\":false,\"following\":null,\"follow_request_sent\":null,\"notifications\":null},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[{\"text\":\"iphone\",\"indices\":[103,110]},{\"text\":\"ios92\",\"indices\":[111,117]},{\"text\":\"apple\",\"indices\":[118,124]},{\"text\":\"iphone6s\",\"indices\":[125,134]},{\"text\":\"iphone7\",\"indices\":[135,143]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/RL7RuWk8ii\",\"expanded_url\":\"https:\\/\\/bitly.com\\/iphonecelebgiveaway\",\"display_url\":\"bitly.com\\/iphonecelebgiv\\u2026\",\"indices\":[0,23]}],\"user_mentions\":[],\"symbols\":[]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"filter_level\":\"low\",\"lang\":\"en\",\"timestamp_ms\":\"1452805368940\"}"},{"key":"tweets.created_unixtime","value":""}],[{"key":"tweets.created_time","value":"687741683065339908"},{"key":"tweets.created_time","value":"1452805369522"},{"key":"tweets.created_time","value":"Thu Jan 14 21:02:49 +0000 2016"},{"key":"tweets.created_time","value":"oot47594"},{"key":"tweets.created_time","value":"https://t.co/RL7RuWk8ii Apple iPhone 5 - 16GB - Black & Slate (Sprint) Smartphone #iphone #ios92 #apple #iphone6s #iphone7"},{"key":"tweets.created_time","value":"{\"created_at\":\"Thu Jan 14 21:02:49 +0000 2016\",\"id\":687741683065339908,\"id_str\":\"687741683065339908\",\"text\":\"https:\\/\\/t.co\\/RL7RuWk8ii Apple iPhone 5 - 16GB - Black & Slate (Sprint) Smartphone #iphone #ios92 #apple #iphone6s #iphone7\",\"source\":\"\\u003ca href=\\\"http:\\/\\/ifttt.com\\\" rel=\\\"nofollow\\\"\\u003eIFTTT\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":4758579715,\"id_str\":\"4758579715\",\"name\":\"Lorena\",\"screen_name\":\"oot47594\",\"location\":null,\"url\":null,\"description\":null,\"protected\":false,\"verified\":false,\"followers_count\":2,\"friends_count\":0,\"listed_count\":7,\"favourites_count\":0,\"statuses_count\":303,\"created_at\":\"Thu Jan 14 14:58:06 +0000 2016\",\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":\"\",\"profile_background_image_url_https\":\"\",\"profile_background_tile\":false,\"profile_link_color\":\"2B7BB9\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/687650611517509632\\/GmSnIsLb_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/687650611517509632\\/GmSnIsLb_normal.jpg\",\"default_profile\":true,\"default_profile_image\":false,\"following\":null,\"follow_request_sent\":null,\"notifications\":null},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[{\"text\":\"iphone\",\"indices\":[86,93]},{\"text\":\"ios92\",\"indices\":[94,100]},{\"text\":\"apple\",\"indices\":[101,107]},{\"text\":\"iphone6s\",\"indices\":[108,117]},{\"text\":\"iphone7\",\"indices\":[118,126]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/RL7RuWk8ii\",\"expanded_url\":\"https:\\/\\/bitly.com\\/iphonecelebgiveaway\",\"display_url\":\"bitly.com\\/iphonecelebgiv\\u2026\",\"indices\":[0,23]}],\"user_mentions\":[],\"symbols\":[]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"filter_level\":\"low\",\"lang\":\"en\",\"timestamp_ms\":\"1452805369522\"}"},{"key":"tweets.created_time","value":""}],[{"key":"tweets.displayname","value":"687741685510574080"},{"key":"tweets.displayname","value":"1452805370105"},{"key":"tweets.displayname","value":"Thu Jan 14 21:02:50 +0000 2016"},{"key":"tweets.displayname","value":"Jajaj12Marco"},{"key":"tweets.displayname","value":"RT @FUT16_PIRANHA: Winner in 15 Minutes https://t.co/c4q3VAXN8H"},{"key":"tweets.displayname","value":"{\"created_at\":\"Thu Jan 14 21:02:50 +0000 2016\",\"id\":687741685510574080,\"id_str\":\"687741685510574080\",\"text\":\"RT @FUT16_PIRANHA: Winner in 15 Minutes https:\\/\\/t.co\\/c4q3VAXN8H\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\/download\\/iphone\\\" rel=\\\"nofollow\\\"\\u003eTwitter for iPhone\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":4778978835,\"id_str\":\"4778978835\",\"name\":\"Marcos\",\"screen_name\":\"Jajaj12Marco\",\"location\":null,\"url\":null,\"description\":null,\"protected\":false,\"verified\":false,\"followers_count\":2,\"friends_count\":27,\"listed_count\":0,\"favourites_count\":17,\"statuses_count\":21,\"created_at\":\"Tue Jan 12 00:11:30 +0000 2016\",\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":\"\",\"profile_background_image_url_https\":\"\",\"profile_background_tile\":false,\"profile_link_color\":\"2B7BB9\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"profile_image_url\":\"http:\\/\\/abs.twimg.com\\/sticky\\/default_profile_images\\/default_profile_1_normal.png\",\"profile_image_url_https\":\"https:\\/\\/abs.twimg.com\\/sticky\\/default_profile_images\\/default_profile_1_normal.png\",\"default_profile\":true,\"default_profile_image\":true,\"following\":null,\"follow_request_sent\":null,\"notifications\":null},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweeted_status\":{\"created_at\":\"Thu Jan 14 20:44:30 +0000 2016\",\"id\":687737073017708544,\"id_str\":\"687737073017708544\",\"text\":\"Winner in 15 Minutes https:\\/\\/t.co\\/c4q3VAXN8H\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\/download\\/iphone\\\" rel=\\\"nofollow\\\"\\u003eTwitter for iPhone\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":2788847989,\"id_str\":\"2788847989\",\"name\":\"Piranha\",\"screen_name\":\"FUT16_PIRANHA\",\"location\":\"Egypt\",\"url\":null,\"description\":\"For Cheap, Reliable Coins Make sure to Go http:\\/\\/Gofifacoins.com Automated Coins Delivery & Use Code ( Piranha ) For 5% OFF , Follow @UltimateKing25 #1 LAD \\ufdfd\",\"protected\":false,\"verified\":false,\"followers_count\":12834,\"friends_count\":259,\"listed_count\":9,\"favourites_count\":2787,\"statuses_count\":29098,\"created_at\":\"Wed Sep 03 23:45:29 +0000 2014\",\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/684400354763653120\\/3hA5eYAK_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/684400354763653120\\/3hA5eYAK_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/2788847989\\/1452008735\",\"default_profile\":true,\"default_profile_image\":false,\"following\":null,\"follow_request_sent\":null,\"notifications\":null},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"quoted_status_id\":687733252065476608,\"quoted_status_id_str\":\"687733252065476608\",\"quoted_status\":{\"created_at\":\"Thu Jan 14 20:29:19 +0000 2016\",\"id\":687733252065476608,\"id_str\":\"687733252065476608\",\"text\":\"Quick 50K XboxOne & PS4 Giveaway Or: 20 Million IOS, Just Retweet & Follow me, Winner in 30 Minutes ;) https:\\/\\/t.co\\/mh9UbLYQky\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\/download\\/iphone\\\" rel=\\\"nofollow\\\"\\u003eTwitter for iPhone\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":2788847989,\"id_str\":\"2788847989\",\"name\":\"Piranha\",\"screen_name\":\"FUT16_PIRANHA\",\"location\":\"Egypt\",\"url\":null,\"description\":\"For Cheap, Reliable Coins Make sure to Go http:\\/\\/Gofifacoins.com Automated Coins Delivery & Use Code ( Piranha ) For 5% OFF , Follow @UltimateKing25 #1 LAD \\ufdfd\",\"protected\":false,\"verified\":false,\"followers_count\":12834,\"friends_count\":259,\"listed_count\":9,\"favourites_count\":2787,\"statuses_count\":29098,\"created_at\":\"Wed Sep 03 23:45:29 +0000 2014\",\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/684400354763653120\\/3hA5eYAK_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/684400354763653120\\/3hA5eYAK_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/2788847989\\/1452008735\",\"default_profile\":true,\"default_profile_image\":false,\"following\":null,\"follow_request_sent\":null,\"notifications\":null},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"urls\":[],\"user_mentions\":[],\"symbols\":[],\"media\":[{\"id\":687733235799994368,\"id_str\":\"687733235799994368\",\"indices\":[111,134],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/CYtRu_QWsAAAmma.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/CYtRu_QWsAAAmma.jpg\",\"url\":\"https:\\/\\/t.co\\/mh9UbLYQky\",\"display_url\":\"pic.twitter.com\\/mh9UbLYQky\",\"expanded_url\":\"http:\\/\\/twitter.com\\/FUT16_PIRANHA\\/status\\/687733252065476608\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":577,\"h\":1024,\"resize\":\"fit\"},\"large\":{\"w\":577,\"h\":1024,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":603,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":687733235799994368,\"id_str\":\"687733235799994368\",\"indices\":[111,134],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/CYtRu_QWsAAAmma.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/CYtRu_QWsAAAmma.jpg\",\"url\":\"https:\\/\\/t.co\\/mh9UbLYQky\",\"display_url\":\"pic.twitter.com\\/mh9UbLYQky\",\"expanded_url\":\"http:\\/\\/twitter.com\\/FUT16_PIRANHA\\/status\\/687733252065476608\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":577,\"h\":1024,\"resize\":\"fit\"},\"large\":{\"w\":577,\"h\":1024,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":603,\"resize\":\"fit\"}}},{\"id\":687733235846131712,\"id_str\":\"687733235846131712\",\"indices\":[111,134],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/CYtRu_bWsAAHTg1.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/CYtRu_bWsAAHTg1.jpg\",\"url\":\"https:\\/\\/t.co\\/mh9UbLYQky\",\"display_url\":\"pic.twitter.com\\/mh9UbLYQky\",\"expanded_url\":\"http:\\/\\/twitter.com\\/FUT16_PIRANHA\\/status\\/687733252065476608\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":1024,\"h\":576,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":337,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":191,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"filter_level\":\"low\",\"lang\":\"en\"},\"is_quote_status\":true,\"retweet_count\":7,\"favorite_count\":6,\"entities\":{\"hashtags\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/c4q3VAXN8H\",\"expanded_url\":\"https:\\/\\/twitter.com\\/fut16_piranha\\/status\\/687733252065476608\",\"display_url\":\"twitter.com\\/fut16_piranha\\/\\u2026\",\"indices\":[21,44]}],\"user_mentions\":[],\"symbols\":[]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"filter_level\":\"low\",\"lang\":\"en\"},\"is_quote_status\":true,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/c4q3VAXN8H\",\"expanded_url\":\"https:\\/\\/twitter.com\\/fut16_piranha\\/status\\/687733252065476608\",\"display_url\":\"twitter.com\\/fut16_piranha\\/\\u2026\",\"indices\":[40,63]}],\"user_mentions\":[{\"screen_name\":\"FUT16_PIRANHA\",\"name\":\"Piranha\",\"id\":2788847989,\"id_str\":\"2788847989\",\"indices\":[3,17]}],\"symbols\":[]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"filter_level\":\"low\",\"lang\":\"en\",\"timestamp_ms\":\"1452805370105\"}"},{"key":"tweets.displayname","value":""}],[{"key":"tweets.msg","value":"687741690967396353"},{"key":"tweets.msg","value":"1452805371406"},{"key":"tweets.msg","value":"Thu Jan 14 21:02:51 +0000 2016"},{"key":"tweets.msg","value":"laciccina"},{"key":"tweets.msg","value":"Passare la serata a sistemare il povero MacBook cercando di farlo tornare in forma... 😒"},{"key":"tweets.msg","value":"{\"created_at\":\"Thu Jan 14 21:02:51 +0000 2016\",\"id\":687741690967396353,\"id_str\":\"687741690967396353\",\"text\":\"Passare la serata a sistemare il povero MacBook cercando di farlo tornare in forma... \\ud83d\\ude12\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\/download\\/iphone\\\" rel=\\\"nofollow\\\"\\u003eTwitter for iPhone\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":57104939,\"id_str\":\"57104939\",\"name\":\"Cinzia Risaliti\",\"screen_name\":\"laciccina\",\"location\":\"Prato - Toscana \",\"url\":\"http:\\/\\/www.solaconio.it\",\"description\":\"Faccio un lavoro che non so spiegare alla nonna e agli amici poco 2.0. "},{"key":"tweets.msg","value":""}],[{"key":"tweets.fulltext","value":"687741697678282753"},{"key":"tweets.fulltext","value":"1452805373006"},{"key":"tweets.fulltext","value":"Thu Jan 14 21:02:53 +0000 2016"},{"key":"tweets.fulltext","value":"msiphone6"},{"key":"tweets.fulltext","value":"NEW BLACK & SLATE FACTORY UNLOCKED AT&T 64GB APPLE IPHONE 5 PHONE L661 via https://t.co/CV8TDWPSaF #iphone #iphone6 #iphone6s #iphone6plus"},{"key":"tweets.fulltext","value":"{\"created_at\":\"Thu Jan 14 21:02:53 +0000 2016\",\"id\":687741697678282753,\"id_str\":\"687741697678282753\",\"text\":\"NEW BLACK & SLATE FACTORY UNLOCKED AT&T 64GB APPLE IPHONE 5 PHONE L661 via https:\\/\\/t.co\\/CV8TDWPSaF #iphone #iphone6 #iphone6s #iphone6plus\",\"source\":\"\\u003ca href=\\\"http:\\/\\/ifttt.com\\\" rel=\\\"nofollow\\\"\\u003eIFTTT\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":4092782779,\"id_str\":\"4092782779\",\"name\":\"ms.iphone\",\"screen_name\":\"msiphone6\",\"location\":null,\"url\":\"http:\\/\\/iphone6sgiveaway.weebly.com\\/\",\"description\":\"Check my iPhone Giveaway!\",\"protected\":false,\"verified\":false,\"followers_count\":5,\"friends_count\":40,\"listed_count\":3,\"favourites_count\":0,\"statuses_count\":7932,\"created_at\":\"Sun Nov 01 16:55:27 +0000 2015\",\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/660864314945835008\\/Za1-nMsG_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/660864314945835008\\/Za1-nMsG_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/4092782779\\/1446397372\",\"default_profile\":true,\"default_profile_image\":false,\"following\":null,\"follow_request_sent\":null,\"notifications\":null},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[{\"text\":\"iphone\",\"indices\":[107,114]},{\"text\":\"iphone6\",\"indices\":[115,123]},{\"text\":\"iphone6s\",\"indices\":[124,133]},{\"text\":\"iphone6plus\",\"indices\":[134,146]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/CV8TDWPSaF\",\"expanded_url\":\"http:\\/\\/ift.tt\\/1XwBHXc\",\"display_url\":\"ift.tt\\/1XwBHXc\",\"indices\":[83,106]}],\"user_mentions\":[],\"symbols\":[]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"filter_level\":\"low\",\"lang\":\"en\",\"timestamp_ms\":\"1452805373006\"}"},{"key":"tweets.fulltext","value":""}]],"columnNames":[{"name":"tweets.tweet_id","index":0,"aggr":"sum"},{"name":"tweets.created_unixtime","index":1,"aggr":"sum"},{"name":"tweets.created_time","index":2,"aggr":"sum"},{"name":"tweets.displayname","index":3,"aggr":"sum"},{"name":"tweets.msg","index":4,"aggr":"sum"},{"name":"tweets.fulltext","index":5,"aggr":"sum"}],"rows":[["687741680624267270","1452805368940","Thu Jan 14 21:02:48 +0000 2016","oot47594","https://t.co/RL7RuWk8ii NEW BLACK & SLATE FACTORY UNLOCKED AT&T 64GB APPLE IPHONE 5 PHONE L661 #iphone #ios92 #apple #iphone6s #iphone7","{\"created_at\":\"Thu Jan 14 21:02:48 +0000 2016\",\"id\":687741680624267270,\"id_str\":\"687741680624267270\",\"text\":\"https:\\/\\/t.co\\/RL7RuWk8ii NEW BLACK & SLATE FACTORY UNLOCKED AT&T 64GB APPLE IPHONE 5 PHONE L661 #iphone #ios92 #apple #iphone6s #iphone7\",\"source\":\"\\u003ca href=\\\"http:\\/\\/ifttt.com\\\" rel=\\\"nofollow\\\"\\u003eIFTTT\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":4758579715,\"id_str\":\"4758579715\",\"name\":\"Lorena\",\"screen_name\":\"oot47594\",\"location\":null,\"url\":null,\"description\":null,\"protected\":false,\"verified\":false,\"followers_count\":2,\"friends_count\":0,\"listed_count\":7,\"favourites_count\":0,\"statuses_count\":302,\"created_at\":\"Thu Jan 14 14:58:06 +0000 2016\",\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":\"\",\"profile_background_image_url_https\":\"\",\"profile_background_tile\":false,\"profile_link_color\":\"2B7BB9\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/687650611517509632\\/GmSnIsLb_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/687650611517509632\\/GmSnIsLb_normal.jpg\",\"default_profile\":true,\"default_profile_image\":false,\"following\":null,\"follow_request_sent\":null,\"notifications\":null},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[{\"text\":\"iphone\",\"indices\":[103,110]},{\"text\":\"ios92\",\"indices\":[111,117]},{\"text\":\"apple\",\"indices\":[118,124]},{\"text\":\"iphone6s\",\"indices\":[125,134]},{\"text\":\"iphone7\",\"indices\":[135,143]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/RL7RuWk8ii\",\"expanded_url\":\"https:\\/\\/bitly.com\\/iphonecelebgiveaway\",\"display_url\":\"bitly.com\\/iphonecelebgiv\\u2026\",\"indices\":[0,23]}],\"user_mentions\":[],\"symbols\":[]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"filter_level\":\"low\",\"lang\":\"en\",\"timestamp_ms\":\"1452805368940\"}",""],["687741683065339908","1452805369522","Thu Jan 14 21:02:49 +0000 2016","oot47594","https://t.co/RL7RuWk8ii Apple iPhone 5 - 16GB - Black & Slate (Sprint) Smartphone #iphone #ios92 #apple #iphone6s #iphone7","{\"created_at\":\"Thu Jan 14 21:02:49 +0000 2016\",\"id\":687741683065339908,\"id_str\":\"687741683065339908\",\"text\":\"https:\\/\\/t.co\\/RL7RuWk8ii Apple iPhone 5 - 16GB - Black & Slate (Sprint) Smartphone #iphone #ios92 #apple #iphone6s #iphone7\",\"source\":\"\\u003ca href=\\\"http:\\/\\/ifttt.com\\\" rel=\\\"nofollow\\\"\\u003eIFTTT\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":4758579715,\"id_str\":\"4758579715\",\"name\":\"Lorena\",\"screen_name\":\"oot47594\",\"location\":null,\"url\":null,\"description\":null,\"protected\":false,\"verified\":false,\"followers_count\":2,\"friends_count\":0,\"listed_count\":7,\"favourites_count\":0,\"statuses_count\":303,\"created_at\":\"Thu Jan 14 14:58:06 +0000 2016\",\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":\"\",\"profile_background_image_url_https\":\"\",\"profile_background_tile\":false,\"profile_link_color\":\"2B7BB9\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/687650611517509632\\/GmSnIsLb_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/687650611517509632\\/GmSnIsLb_normal.jpg\",\"default_profile\":true,\"default_profile_image\":false,\"following\":null,\"follow_request_sent\":null,\"notifications\":null},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[{\"text\":\"iphone\",\"indices\":[86,93]},{\"text\":\"ios92\",\"indices\":[94,100]},{\"text\":\"apple\",\"indices\":[101,107]},{\"text\":\"iphone6s\",\"indices\":[108,117]},{\"text\":\"iphone7\",\"indices\":[118,126]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/RL7RuWk8ii\",\"expanded_url\":\"https:\\/\\/bitly.com\\/iphonecelebgiveaway\",\"display_url\":\"bitly.com\\/iphonecelebgiv\\u2026\",\"indices\":[0,23]}],\"user_mentions\":[],\"symbols\":[]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"filter_level\":\"low\",\"lang\":\"en\",\"timestamp_ms\":\"1452805369522\"}",""],["687741685510574080","1452805370105","Thu Jan 14 21:02:50 +0000 2016","Jajaj12Marco","RT @FUT16_PIRANHA: Winner in 15 Minutes https://t.co/c4q3VAXN8H","{\"created_at\":\"Thu Jan 14 21:02:50 +0000 2016\",\"id\":687741685510574080,\"id_str\":\"687741685510574080\",\"text\":\"RT @FUT16_PIRANHA: Winner in 15 Minutes https:\\/\\/t.co\\/c4q3VAXN8H\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\/download\\/iphone\\\" rel=\\\"nofollow\\\"\\u003eTwitter for iPhone\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":4778978835,\"id_str\":\"4778978835\",\"name\":\"Marcos\",\"screen_name\":\"Jajaj12Marco\",\"location\":null,\"url\":null,\"description\":null,\"protected\":false,\"verified\":false,\"followers_count\":2,\"friends_count\":27,\"listed_count\":0,\"favourites_count\":17,\"statuses_count\":21,\"created_at\":\"Tue Jan 12 00:11:30 +0000 2016\",\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"profile_background_color\":\"F5F8FA\",\"profile_background_image_url\":\"\",\"profile_background_image_url_https\":\"\",\"profile_background_tile\":false,\"profile_link_color\":\"2B7BB9\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"profile_image_url\":\"http:\\/\\/abs.twimg.com\\/sticky\\/default_profile_images\\/default_profile_1_normal.png\",\"profile_image_url_https\":\"https:\\/\\/abs.twimg.com\\/sticky\\/default_profile_images\\/default_profile_1_normal.png\",\"default_profile\":true,\"default_profile_image\":true,\"following\":null,\"follow_request_sent\":null,\"notifications\":null},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"retweeted_status\":{\"created_at\":\"Thu Jan 14 20:44:30 +0000 2016\",\"id\":687737073017708544,\"id_str\":\"687737073017708544\",\"text\":\"Winner in 15 Minutes https:\\/\\/t.co\\/c4q3VAXN8H\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\/download\\/iphone\\\" rel=\\\"nofollow\\\"\\u003eTwitter for iPhone\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":2788847989,\"id_str\":\"2788847989\",\"name\":\"Piranha\",\"screen_name\":\"FUT16_PIRANHA\",\"location\":\"Egypt\",\"url\":null,\"description\":\"For Cheap, Reliable Coins Make sure to Go http:\\/\\/Gofifacoins.com Automated Coins Delivery & Use Code ( Piranha ) For 5% OFF , Follow @UltimateKing25 #1 LAD \\ufdfd\",\"protected\":false,\"verified\":false,\"followers_count\":12834,\"friends_count\":259,\"listed_count\":9,\"favourites_count\":2787,\"statuses_count\":29098,\"created_at\":\"Wed Sep 03 23:45:29 +0000 2014\",\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/684400354763653120\\/3hA5eYAK_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/684400354763653120\\/3hA5eYAK_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/2788847989\\/1452008735\",\"default_profile\":true,\"default_profile_image\":false,\"following\":null,\"follow_request_sent\":null,\"notifications\":null},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"quoted_status_id\":687733252065476608,\"quoted_status_id_str\":\"687733252065476608\",\"quoted_status\":{\"created_at\":\"Thu Jan 14 20:29:19 +0000 2016\",\"id\":687733252065476608,\"id_str\":\"687733252065476608\",\"text\":\"Quick 50K XboxOne & PS4 Giveaway Or: 20 Million IOS, Just Retweet & Follow me, Winner in 30 Minutes ;) https:\\/\\/t.co\\/mh9UbLYQky\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\/download\\/iphone\\\" rel=\\\"nofollow\\\"\\u003eTwitter for iPhone\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":2788847989,\"id_str\":\"2788847989\",\"name\":\"Piranha\",\"screen_name\":\"FUT16_PIRANHA\",\"location\":\"Egypt\",\"url\":null,\"description\":\"For Cheap, Reliable Coins Make sure to Go http:\\/\\/Gofifacoins.com Automated Coins Delivery & Use Code ( Piranha ) For 5% OFF , Follow @UltimateKing25 #1 LAD \\ufdfd\",\"protected\":false,\"verified\":false,\"followers_count\":12834,\"friends_count\":259,\"listed_count\":9,\"favourites_count\":2787,\"statuses_count\":29098,\"created_at\":\"Wed Sep 03 23:45:29 +0000 2014\",\"utc_offset\":-28800,\"time_zone\":\"Pacific Time (US & Canada)\",\"geo_enabled\":true,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/684400354763653120\\/3hA5eYAK_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/684400354763653120\\/3hA5eYAK_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/2788847989\\/1452008735\",\"default_profile\":true,\"default_profile_image\":false,\"following\":null,\"follow_request_sent\":null,\"notifications\":null},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"urls\":[],\"user_mentions\":[],\"symbols\":[],\"media\":[{\"id\":687733235799994368,\"id_str\":\"687733235799994368\",\"indices\":[111,134],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/CYtRu_QWsAAAmma.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/CYtRu_QWsAAAmma.jpg\",\"url\":\"https:\\/\\/t.co\\/mh9UbLYQky\",\"display_url\":\"pic.twitter.com\\/mh9UbLYQky\",\"expanded_url\":\"http:\\/\\/twitter.com\\/FUT16_PIRANHA\\/status\\/687733252065476608\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":577,\"h\":1024,\"resize\":\"fit\"},\"large\":{\"w\":577,\"h\":1024,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":603,\"resize\":\"fit\"}}}]},\"extended_entities\":{\"media\":[{\"id\":687733235799994368,\"id_str\":\"687733235799994368\",\"indices\":[111,134],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/CYtRu_QWsAAAmma.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/CYtRu_QWsAAAmma.jpg\",\"url\":\"https:\\/\\/t.co\\/mh9UbLYQky\",\"display_url\":\"pic.twitter.com\\/mh9UbLYQky\",\"expanded_url\":\"http:\\/\\/twitter.com\\/FUT16_PIRANHA\\/status\\/687733252065476608\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"medium\":{\"w\":577,\"h\":1024,\"resize\":\"fit\"},\"large\":{\"w\":577,\"h\":1024,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":603,\"resize\":\"fit\"}}},{\"id\":687733235846131712,\"id_str\":\"687733235846131712\",\"indices\":[111,134],\"media_url\":\"http:\\/\\/pbs.twimg.com\\/media\\/CYtRu_bWsAAHTg1.jpg\",\"media_url_https\":\"https:\\/\\/pbs.twimg.com\\/media\\/CYtRu_bWsAAHTg1.jpg\",\"url\":\"https:\\/\\/t.co\\/mh9UbLYQky\",\"display_url\":\"pic.twitter.com\\/mh9UbLYQky\",\"expanded_url\":\"http:\\/\\/twitter.com\\/FUT16_PIRANHA\\/status\\/687733252065476608\\/photo\\/1\",\"type\":\"photo\",\"sizes\":{\"large\":{\"w\":1024,\"h\":576,\"resize\":\"fit\"},\"medium\":{\"w\":600,\"h\":337,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":340,\"h\":191,\"resize\":\"fit\"}}}]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"filter_level\":\"low\",\"lang\":\"en\"},\"is_quote_status\":true,\"retweet_count\":7,\"favorite_count\":6,\"entities\":{\"hashtags\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/c4q3VAXN8H\",\"expanded_url\":\"https:\\/\\/twitter.com\\/fut16_piranha\\/status\\/687733252065476608\",\"display_url\":\"twitter.com\\/fut16_piranha\\/\\u2026\",\"indices\":[21,44]}],\"user_mentions\":[],\"symbols\":[]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"filter_level\":\"low\",\"lang\":\"en\"},\"is_quote_status\":true,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/c4q3VAXN8H\",\"expanded_url\":\"https:\\/\\/twitter.com\\/fut16_piranha\\/status\\/687733252065476608\",\"display_url\":\"twitter.com\\/fut16_piranha\\/\\u2026\",\"indices\":[40,63]}],\"user_mentions\":[{\"screen_name\":\"FUT16_PIRANHA\",\"name\":\"Piranha\",\"id\":2788847989,\"id_str\":\"2788847989\",\"indices\":[3,17]}],\"symbols\":[]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"filter_level\":\"low\",\"lang\":\"en\",\"timestamp_ms\":\"1452805370105\"}",""],["687741690967396353","1452805371406","Thu Jan 14 21:02:51 +0000 2016","laciccina","Passare la serata a sistemare il povero MacBook cercando di farlo tornare in forma... 😒","{\"created_at\":\"Thu Jan 14 21:02:51 +0000 2016\",\"id\":687741690967396353,\"id_str\":\"687741690967396353\",\"text\":\"Passare la serata a sistemare il povero MacBook cercando di farlo tornare in forma... \\ud83d\\ude12\",\"source\":\"\\u003ca href=\\\"http:\\/\\/twitter.com\\/download\\/iphone\\\" rel=\\\"nofollow\\\"\\u003eTwitter for iPhone\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":57104939,\"id_str\":\"57104939\",\"name\":\"Cinzia Risaliti\",\"screen_name\":\"laciccina\",\"location\":\"Prato - Toscana \",\"url\":\"http:\\/\\/www.solaconio.it\",\"description\":\"Faccio un lavoro che non so spiegare alla nonna e agli amici poco 2.0. ",""],["687741697678282753","1452805373006","Thu Jan 14 21:02:53 +0000 2016","msiphone6","NEW BLACK & SLATE FACTORY UNLOCKED AT&T 64GB APPLE IPHONE 5 PHONE L661 via https://t.co/CV8TDWPSaF #iphone #iphone6 #iphone6s #iphone6plus","{\"created_at\":\"Thu Jan 14 21:02:53 +0000 2016\",\"id\":687741697678282753,\"id_str\":\"687741697678282753\",\"text\":\"NEW BLACK & SLATE FACTORY UNLOCKED AT&T 64GB APPLE IPHONE 5 PHONE L661 via https:\\/\\/t.co\\/CV8TDWPSaF #iphone #iphone6 #iphone6s #iphone6plus\",\"source\":\"\\u003ca href=\\\"http:\\/\\/ifttt.com\\\" rel=\\\"nofollow\\\"\\u003eIFTTT\\u003c\\/a\\u003e\",\"truncated\":false,\"in_reply_to_status_id\":null,\"in_reply_to_status_id_str\":null,\"in_reply_to_user_id\":null,\"in_reply_to_user_id_str\":null,\"in_reply_to_screen_name\":null,\"user\":{\"id\":4092782779,\"id_str\":\"4092782779\",\"name\":\"ms.iphone\",\"screen_name\":\"msiphone6\",\"location\":null,\"url\":\"http:\\/\\/iphone6sgiveaway.weebly.com\\/\",\"description\":\"Check my iPhone Giveaway!\",\"protected\":false,\"verified\":false,\"followers_count\":5,\"friends_count\":40,\"listed_count\":3,\"favourites_count\":0,\"statuses_count\":7932,\"created_at\":\"Sun Nov 01 16:55:27 +0000 2015\",\"utc_offset\":null,\"time_zone\":null,\"geo_enabled\":false,\"lang\":\"en\",\"contributors_enabled\":false,\"is_translator\":false,\"profile_background_color\":\"C0DEED\",\"profile_background_image_url\":\"http:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_image_url_https\":\"https:\\/\\/abs.twimg.com\\/images\\/themes\\/theme1\\/bg.png\",\"profile_background_tile\":false,\"profile_link_color\":\"0084B4\",\"profile_sidebar_border_color\":\"C0DEED\",\"profile_sidebar_fill_color\":\"DDEEF6\",\"profile_text_color\":\"333333\",\"profile_use_background_image\":true,\"profile_image_url\":\"http:\\/\\/pbs.twimg.com\\/profile_images\\/660864314945835008\\/Za1-nMsG_normal.jpg\",\"profile_image_url_https\":\"https:\\/\\/pbs.twimg.com\\/profile_images\\/660864314945835008\\/Za1-nMsG_normal.jpg\",\"profile_banner_url\":\"https:\\/\\/pbs.twimg.com\\/profile_banners\\/4092782779\\/1446397372\",\"default_profile\":true,\"default_profile_image\":false,\"following\":null,\"follow_request_sent\":null,\"notifications\":null},\"geo\":null,\"coordinates\":null,\"place\":null,\"contributors\":null,\"is_quote_status\":false,\"retweet_count\":0,\"favorite_count\":0,\"entities\":{\"hashtags\":[{\"text\":\"iphone\",\"indices\":[107,114]},{\"text\":\"iphone6\",\"indices\":[115,123]},{\"text\":\"iphone6s\",\"indices\":[124,133]},{\"text\":\"iphone6plus\",\"indices\":[134,146]}],\"urls\":[{\"url\":\"https:\\/\\/t.co\\/CV8TDWPSaF\",\"expanded_url\":\"http:\\/\\/ift.tt\\/1XwBHXc\",\"display_url\":\"ift.tt\\/1XwBHXc\",\"indices\":[83,106]}],\"user_mentions\":[],\"symbols\":[]},\"favorited\":false,\"retweeted\":false,\"possibly_sensitive\":false,\"filter_level\":\"low\",\"lang\":\"en\",\"timestamp_ms\":\"1452805373006\"}",""]]},"dateCreated":"2016-01-13T07:37:19+0000","dateStarted":"2016-01-14T10:27:17+0000","dateFinished":"2016-01-14T10:27:21+0000","status":"FINISHED","progressUpdateIntervalMs":500,"$$hashKey":"object:1739"},{"text":"%hive\ncreate table if not exists weblog(\n clickid string, \n session int, \n userid int, \n visited timestamp, \n product string\n)\nrow format delimited fields terminated by \",\"\nlocation \"/tmp/weblog_staging\"","dateUpdated":"2016-01-14T10:27:21+0000","config":{"colWidth":12,"graph":{"mode":"table","height":300,"optionOpen":false,"keys":[],"values":[],"groups":[],"scatter":{}},"editorMode":"ace/mode/scala","enabled":true},"settings":{"params":{},"forms":{}},"jobName":"paragraph_1452713932897_-2124663831","id":"20160113-193852_41019454","result":{"code":"ERROR","type":"TEXT","msg":"The query did not generate a result set!"},"dateCreated":"2016-01-13T07:38:52+0000","dateStarted":"2016-01-14T10:27:22+0000","dateFinished":"2016-01-14T10:27:25+0000","status":"ERROR","progressUpdateIntervalMs":500,"$$hashKey":"object:1740"},{"text":"%hive\nselect * from weblog limit 5","dateUpdated":"2016-01-14T10:27:27+0000","config":{"colWidth":12,"graph":{"mode":"table","height":300,"optionOpen":false,"keys":[],"values":[],"groups":[],"scatter":{}},"editorMode":"ace/mode/scala","enabled":true},"settings":{"params":{},"forms":{}},"jobName":"paragraph_1452729023043_911222965","id":"20160113-235023_891487368","result":{"code":"SUCCESS","type":"TABLE","msg":"weblog.clickid\tweblog.session\tweblog.userid\tweblog.visited\tweblog.product\n1-1\t1\t1\t2009-05-27 20:20:52.0\tApple MacBook Pro with Retina Display (13-inch\t\n2-1\t1\t1\t2009-05-27 20:23:01.0\tSamsung Galaxy S5\t\n3-1\t1\t1\t2009-05-27 20:24:34.0\tSamsung Galaxy S5\t\n4-1\t1\t1\t2009-05-27 20:24:49.0\tSamsung Galaxy S6 Active\t\n1-2\t2\t2\t2007-10-11 03:14:32.0\tBeats Solo 2\t\n","comment":"","msgTable":[[{"key":"weblog.session","value":"1-1"},{"key":"weblog.session","value":"1"},{"key":"weblog.session","value":"1"},{"key":"weblog.session","value":"2009-05-27 20:20:52.0"},{"key":"weblog.session","value":"Apple MacBook Pro with Retina Display (13-inch"},{"key":"weblog.session","value":""}],[{"key":"weblog.userid","value":"2-1"},{"key":"weblog.userid","value":"1"},{"key":"weblog.userid","value":"1"},{"key":"weblog.userid","value":"2009-05-27 20:23:01.0"},{"key":"weblog.userid","value":"Samsung Galaxy S5"},{"key":"weblog.userid","value":""}],[{"key":"weblog.visited","value":"3-1"},{"key":"weblog.visited","value":"1"},{"key":"weblog.visited","value":"1"},{"key":"weblog.visited","value":"2009-05-27 20:24:34.0"},{"key":"weblog.visited","value":"Samsung Galaxy S5"},{"key":"weblog.visited","value":""}],[{"key":"weblog.product","value":"4-1"},{"key":"weblog.product","value":"1"},{"key":"weblog.product","value":"1"},{"key":"weblog.product","value":"2009-05-27 20:24:49.0"},{"key":"weblog.product","value":"Samsung Galaxy S6 Active"},{"key":"weblog.product","value":""}],[{"value":"1-2"},{"value":"2"},{"value":"2"},{"value":"2007-10-11 03:14:32.0"},{"value":"Beats Solo 2"},{"value":""}]],"columnNames":[{"name":"weblog.clickid","index":0,"aggr":"sum"},{"name":"weblog.session","index":1,"aggr":"sum"},{"name":"weblog.userid","index":2,"aggr":"sum"},{"name":"weblog.visited","index":3,"aggr":"sum"},{"name":"weblog.product","index":4,"aggr":"sum"}],"rows":[["1-1","1","1","2009-05-27 20:20:52.0","Apple MacBook Pro with Retina Display (13-inch",""],["2-1","1","1","2009-05-27 20:23:01.0","Samsung Galaxy S5",""],["3-1","1","1","2009-05-27 20:24:34.0","Samsung Galaxy S5",""],["4-1","1","1","2009-05-27 20:24:49.0","Samsung Galaxy S6 Active",""],["1-2","2","2","2007-10-11 03:14:32.0","Beats Solo 2",""]]},"dateCreated":"2016-01-13T11:50:23+0000","dateStarted":"2016-01-14T10:27:27+0000","dateFinished":"2016-01-14T10:27:30+0000","status":"FINISHED","progressUpdateIntervalMs":500,"$$hashKey":"object:1741"},{"text":"%hive\nselect count(distinct session) from weblog","dateUpdated":"2016-01-13T11:53:10+0000","config":{"colWidth":12,"graph":{"mode":"table","height":300,"optionOpen":false,"keys":[],"values":[],"groups":[],"scatter":{}},"enabled":true,"editorMode":"ace/mode/scala"},"settings":{"params":{},"forms":{}},"jobName":"paragraph_1452717687969_-780406490","id":"20160113-204127_35708745","result":{"code":"SUCCESS","type":"TABLE","msg":"c0\n9\t\n","comment":"","msgTable":[[{"value":"9"},{"value":""}]],"columnNames":[{"name":"c0","index":0,"aggr":"sum"}],"rows":[["9",""]]},"dateCreated":"2016-01-13T08:41:27+0000","dateStarted":"2016-01-13T11:53:10+0000","dateFinished":"2016-01-13T11:53:37+0000","status":"FINISHED","progressUpdateIntervalMs":500,"$$hashKey":"object:1742"},{"text":"%md\n#### Step 4: Analyze tables/columns\n\nNow lets run table level statistics on the tables we are interested in to improve query times\n","dateUpdated":"2016-01-15T04:10:36+0000","config":{"colWidth":12,"graph":{"mode":"table","height":300,"optionOpen":false,"keys":[],"values":[],"groups":[],"scatter":{}},"editorMode":"ace/mode/markdown","editorHide":true,"enabled":true},"settings":{"params":{},"forms":{}},"jobName":"paragraph_1452721433491_1920109337","id":"20160113-214353_719128300","result":{"code":"SUCCESS","type":"HTML","msg":"

Step 4: Analyze tables/columns

\n

Now lets run table level statistics on the tables we are interested in to improve query times

\n"},"dateCreated":"2016-01-13T09:43:53+0000","dateStarted":"2016-01-15T04:10:35+0000","dateFinished":"2016-01-15T04:10:36+0000","status":"FINISHED","progressUpdateIntervalMs":500,"$$hashKey":"object:1743"},{"text":"%hive\nanalyze table tweets compute statistics","dateUpdated":"2016-01-13T10:21:14+0000","config":{"colWidth":4,"graph":{"mode":"table","height":300,"optionOpen":false,"keys":[],"values":[],"groups":[],"scatter":{}},"editorMode":"ace/mode/scala","enabled":true},"settings":{"params":{},"forms":{}},"jobName":"paragraph_1452717815305_-1694384342","id":"20160113-204335_1874970606","result":{"code":"ERROR","type":"TEXT","msg":"The query did not generate a result set!"},"dateCreated":"2016-01-13T08:43:35+0000","dateStarted":"2016-01-13T10:21:14+0000","dateFinished":"2016-01-13T10:21:36+0000","status":"ERROR","progressUpdateIntervalMs":500,"$$hashKey":"object:1744"},{"text":"%hive\nanalyze table weblog compute statistics","dateUpdated":"2016-01-13T11:53:43+0000","config":{"colWidth":4,"graph":{"mode":"table","height":300,"optionOpen":false,"keys":[],"values":[],"groups":[],"scatter":{}},"editorMode":"ace/mode/scala","enabled":true},"settings":{"params":{},"forms":{}},"jobName":"paragraph_1452721373956_1663020451","id":"20160113-214253_1051568440","result":{"code":"ERROR","type":"TEXT","msg":"The query did not generate a result set!"},"dateCreated":"2016-01-13T09:42:53+0000","dateStarted":"2016-01-13T11:53:43+0000","dateFinished":"2016-01-13T11:53:47+0000","status":"ERROR","progressUpdateIntervalMs":500,"$$hashKey":"object:1745"},{"text":"%hive\nanalyze table factsales_final compute statistics","dateUpdated":"2016-01-13T10:21:29+0000","config":{"colWidth":4,"graph":{"mode":"table","height":300,"optionOpen":false,"keys":[],"values":[],"groups":[],"scatter":{}},"enabled":true,"editorMode":"ace/mode/scala"},"settings":{"params":{},"forms":{}},"jobName":"paragraph_1452721472392_1433279385","id":"20160113-214432_1363478432","result":{"code":"ERROR","type":"TEXT","msg":"The query did not generate a result set!"},"dateCreated":"2016-01-13T09:44:32+0000","dateStarted":"2016-01-13T10:21:37+0000","dateFinished":"2016-01-13T10:21:43+0000","status":"ERROR","progressUpdateIntervalMs":500,"$$hashKey":"object:1746"},{"text":"%md\nNext lets compute column statistics for the same tables","dateUpdated":"2016-01-13T10:22:04+0000","config":{"colWidth":12,"graph":{"mode":"table","height":300,"optionOpen":false,"keys":[],"values":[],"groups":[],"scatter":{}},"editorHide":true,"enabled":true,"editorMode":"ace/mode/markdown"},"settings":{"params":{},"forms":{}},"jobName":"paragraph_1452723689940_661502389","id":"20160113-222129_1782182444","result":{"code":"SUCCESS","type":"HTML","msg":"

Next lets compute column statistics for the same tables

\n"},"dateCreated":"2016-01-13T10:21:29+0000","dateStarted":"2016-01-13T10:22:02+0000","dateFinished":"2016-01-13T10:22:05+0000","status":"FINISHED","progressUpdateIntervalMs":500,"$$hashKey":"object:1747"},{"text":"%hive\nanalyze table tweets compute statistics for columns","dateUpdated":"2016-01-13T10:22:27+0000","config":{"colWidth":4,"graph":{"mode":"table","height":300,"optionOpen":false,"keys":[],"values":[],"groups":[],"scatter":{}},"editorMode":"ace/mode/scala","enabled":true},"settings":{"params":{},"forms":{}},"jobName":"paragraph_1452723717803_-2109413217","id":"20160113-222157_507284179","result":{"code":"ERROR","type":"TEXT","msg":"The query did not generate a result set!"},"dateCreated":"2016-01-13T10:21:57+0000","dateStarted":"2016-01-13T10:22:27+0000","dateFinished":"2016-01-13T10:22:37+0000","status":"ERROR","progressUpdateIntervalMs":500,"$$hashKey":"object:1748"},{"text":"%hive\nanalyze table weblog compute statistics for columns","dateUpdated":"2016-01-13T11:53:48+0000","config":{"colWidth":4,"graph":{"mode":"table","height":300,"optionOpen":false,"keys":[],"values":[],"groups":[],"scatter":{}},"editorMode":"ace/mode/scala","enabled":true},"settings":{"params":{},"forms":{}},"jobName":"paragraph_1452723747762_-1218872755","id":"20160113-222227_1514449570","result":{"code":"ERROR","type":"TEXT","msg":"The query did not generate a result set!"},"dateCreated":"2016-01-13T10:22:27+0000","dateStarted":"2016-01-13T11:53:48+0000","dateFinished":"2016-01-13T11:53:52+0000","status":"ERROR","progressUpdateIntervalMs":500,"$$hashKey":"object:1749"},{"text":"%hive\nanalyze table factsales_final compute statistics for columns","dateUpdated":"2016-01-13T10:23:10+0000","config":{"colWidth":4,"graph":{"mode":"table","height":300,"optionOpen":false,"keys":[],"values":[],"groups":[],"scatter":{}},"enabled":true,"editorMode":"ace/mode/scala"},"settings":{"params":{},"forms":{}},"jobName":"paragraph_1452723767145_-631699961","id":"20160113-222247_186145308","result":{"code":"ERROR","type":"TEXT","msg":"The query did not generate a result set!"},"dateCreated":"2016-01-13T10:22:47+0000","dateStarted":"2016-01-13T10:23:10+0000","dateFinished":"2016-01-13T10:24:12+0000","status":"ERROR","progressUpdateIntervalMs":500,"$$hashKey":"object:1750"},{"text":"%md\n#### Step 5: Use Hive to correlate the data from different sources\n\n##### Query A: Top 10 most visited products","dateUpdated":"2016-01-15T03:45:14+0000","config":{"colWidth":12,"graph":{"mode":"table","height":300,"optionOpen":false,"keys":[],"values":[],"groups":[],"scatter":{}},"editorMode":"ace/mode/markdown","editorHide":true,"enabled":true},"settings":{"params":{},"forms":{}},"jobName":"paragraph_1452723790574_-1153004072","id":"20160113-222310_1267394170","result":{"code":"SUCCESS","type":"HTML","msg":"

Step 5: Use Hive to correlate the data from different sources

\n
Query A: Top 10 most visited products
\n"},"dateCreated":"2016-01-13T10:23:10+0000","dateStarted":"2016-01-15T03:44:47+0000","dateFinished":"2016-01-15T03:45:15+0000","status":"FINISHED","progressUpdateIntervalMs":500,"$$hashKey":"object:1751"},{"text":"%hive\nselect product,count(1) popular \nfrom weblog group by product order by popular desc limit 10","dateUpdated":"2016-01-15T03:45:14+0000","config":{"colWidth":12,"graph":{"mode":"pieChart","height":300,"optionOpen":false,"keys":[{"name":"product","index":0,"aggr":"sum"}],"values":[{"name":"popular","index":1,"aggr":"sum"}],"groups":[],"scatter":{"xAxis":{"name":"product","index":0,"aggr":"sum"},"yAxis":{"name":"popular","index":1,"aggr":"sum"}}},"editorMode":"ace/mode/scala","enabled":true},"settings":{"params":{},"forms":{}},"jobName":"paragraph_1452724190719_-2066998893","id":"20160113-222950_1405982278","result":{"code":"SUCCESS","type":"TABLE","msg":"product\tpopular\niPad Air 2\t211\t\nMicrosoft Xbox One\t123\t\nApple MacBook Pro with Retina Display (13-inch\t123\t\nBlackBerry Priv\t121\t\nApple TV\t119\t\nApple iPhone 5S\t119\t\nRoku 3 (2015)\t118\t\nMicrosoft Surface Pro 4\t116\t\nLG V10 (unlocked)\t116\t\nSamsung Galaxy Tab A 8.0\t114\t\n","comment":"","msgTable":[[{"key":"popular","value":"iPad Air 2"},{"key":"popular","value":"211"},{"key":"popular","value":""}],[{"value":"Microsoft Xbox One"},{"value":"123"},{"value":""}],[{"value":"Apple MacBook Pro with Retina Display (13-inch"},{"value":"123"},{"value":""}],[{"value":"BlackBerry Priv"},{"value":"121"},{"value":""}],[{"value":"Apple TV"},{"value":"119"},{"value":""}],[{"value":"Apple iPhone 5S"},{"value":"119"},{"value":""}],[{"value":"Roku 3 (2015)"},{"value":"118"},{"value":""}],[{"value":"Microsoft Surface Pro 4"},{"value":"116"},{"value":""}],[{"value":"LG V10 (unlocked)"},{"value":"116"},{"value":""}],[{"value":"Samsung Galaxy Tab A 8.0"},{"value":"114"},{"value":""}]],"columnNames":[{"name":"product","index":0,"aggr":"sum"},{"name":"popular","index":1,"aggr":"sum"}],"rows":[["iPad Air 2","211",""],["Microsoft Xbox One","123",""],["Apple MacBook Pro with Retina Display (13-inch","123",""],["BlackBerry Priv","121",""],["Apple TV","119",""],["Apple iPhone 5S","119",""],["Roku 3 (2015)","118",""],["Microsoft Surface Pro 4","116",""],["LG V10 (unlocked)","116",""],["Samsung Galaxy Tab A 8.0","114",""]]},"dateCreated":"2016-01-13T10:29:50+0000","dateStarted":"2016-01-15T03:44:08+0000","dateFinished":"2016-01-15T03:46:41+0000","status":"FINISHED","progressUpdateIntervalMs":500,"$$hashKey":"object:1752"},{"text":"%md\n##### Query B: Top products with most time spent by year","dateUpdated":"2016-01-13T10:35:03+0000","config":{"colWidth":12,"graph":{"mode":"table","height":300,"optionOpen":false,"keys":[],"values":[],"groups":[],"scatter":{}},"editorHide":true,"enabled":true,"editorMode":"ace/mode/markdown"},"settings":{"params":{},"forms":{}},"jobName":"paragraph_1452724362356_1428104444","id":"20160113-223242_148647850","result":{"code":"SUCCESS","type":"HTML","msg":"
Query B: Top products with most time spent by year
\n"},"dateCreated":"2016-01-13T10:32:42+0000","dateStarted":"2016-01-13T10:35:00+0000","dateFinished":"2016-01-13T10:35:01+0000","status":"FINISHED","progressUpdateIntervalMs":500,"$$hashKey":"object:1753"},{"text":"%hive\nselect product,year_visited, sum(time_spent) as total_time from\n(select table1.product,year(visited) as year_visited, \nmonth(visited) as month,unix_timestamp(table1.lead_window_0) - unix_timestamp(table1.visited) as time_spent\nfrom (select product,visited,lead(visited) over (PARTITION BY session ORDER BY visited asc) from weblog) table1 \nwhere table1.lead_window_0 is not NULL) table2\ngroup by product,year_visited \norder by total_time desc limit 100","dateUpdated":"2016-01-15T03:47:05+0000","config":{"colWidth":12,"graph":{"mode":"multiBarChart","height":300,"optionOpen":false,"keys":[{"name":"product","index":0,"aggr":"sum"}],"values":[{"name":"total_time","index":2,"aggr":"sum"}],"groups":[],"scatter":{"xAxis":{"name":"product","index":0,"aggr":"sum"},"yAxis":{"name":"year_visited","index":1,"aggr":"sum"}}},"editorMode":"ace/mode/scala","enabled":true},"settings":{"params":{},"forms":{}},"jobName":"paragraph_1452724500772_-1601453844","id":"20160113-223500_319311539","result":{"code":"SUCCESS","type":"TABLE","msg":"product\tyear_visited\ttotal_time\niPad Mini 2\t2007\t22345213\t\niPad Air 2\t2008\t20319952\t\nGoogle Nexus 6P\t2009\t18986943\t\nMicrosoft Xbox One\t2007\t18364357\t\nSennheiser Momentum 2.0\t2008\t18296169\t\nGoPro Hero3\t2008\t17772811\t\nMicrosoft Surface Pro 4\t2007\t15856442\t\nMicrosoft Surface Pro 4\t2009\t15744650\t\nChromecast Audio\t2007\t15061838\t\nApple Watch\t2008\t14914757\t\nBeats Solo 2\t2007\t14892076\t\nSamsung UNJS8500 series\t2009\t14552895\t\nSamsung Galaxy S6\t2008\t14125932\t\nSamsung Galaxy S4\t2008\t14031774\t\nApple TV (2015)\t2009\t13968980\t\nAmazon Echo\t2008\t13684607\t\nHTC One M9\t2007\t13661875\t\nApple MacBook Pro with Retina Display (13-inch\t2009\t13477337\t\nNest Cam\t2007\t13339656\t\nApple TV\t2008\t13303115\t\nRoku 3 (2015)\t2009\t13034106\t\nRoku 3 (2015)\t2008\t12983711\t\nLenovo Yoga 3 14\t2008\t12915838\t\nBeats Studio Wireless Headphones\t2008\t12758297\t\nMicrosoft Surface Book\t2007\t12662363\t\nBose SoundLink Around-Ear Wireless Headphones II\t2008\t12026303\t\nChromecast Audio\t2009\t11884001\t\nLG G4\t2007\t11737053\t\nFitbit Charge HR\t2007\t11588749\t\nTCL S3800 series (Roku TV\t2007\t11389855\t\nJBL Charge 2+\t2009\t11250144\t\nSony Alpha 6000 (ILCE-6000)\t2008\t11190585\t\nGoogle Nexus 6\t2007\t11142680\t\nRoku 4\t2009\t11021428\t\nNikon D3300\t2009\t10972510\t\nBlackBerry Priv\t2008\t10674974\t\nApple TV (2015)\t2007\t10639746\t\nSamsung Galaxy Tab S2\t2007\t10572097\t\niPad Air 2\t2009\t10484452\t\nHTC One M9\t2008\t10460121\t\niPad Pro\t2009\t10456427\t\nGoogle Nexus 6P\t2008\t10450273\t\nChromecast Audio\t2008\t10442808\t\nAsus Chromebit\t2008\t10416952\t\niPad Pro\t2007\t10383155\t\nVizio M series (2015)\t2009\t10350015\t\nLenovo Yoga 900\t2007\t10219478\t\nBose SoundLink Bluetooth Speaker III\t2008\t10171260\t\nSAMSUNG GALAXY NOTE 5\t2009\t10036744\t\nLG V10 (unlocked)\t2007\t9937043\t\nAsus Chromebit\t2007\t9932073\t\nLG G4\t2008\t9917763\t\nBlackBerry Priv\t2007\t9791339\t\nAmazon Kindle Paperwhite (2015)\t2009\t9718983\t\nBose SoundLink Bluetooth Speaker III\t2007\t9676734\t\nGoPro Hero4 Silver\t2009\t9566802\t\nMicrosoft Surface Pro 3\t2008\t9472396\t\nJBL Flip 3\t2008\t9467013\t\nVizio E series (2015)\t2007\t9450656\t\nNest Learning Thermostat Third Generation\t2009\t9283940\t\nMicrosoft Xbox One\t2008\t9187780\t\nSamsung Galaxy S6 Active\t2009\t9096655\t\nApple iPhone 6S\t2009\t9009430\t\nApple MacBook (12-inch\t2007\t8987124\t\nSamsung Gear S2\t2008\t8843350\t\nRoku 2 (2015)\t2008\t8821836\t\nTiVo Bolt\t2007\t8765784\t\nApple iPhone 5\t2008\t8753603\t\nNest Learning Thermostat Third Generation\t2007\t8724107\t\nRoku 3 (2015)\t2007\t8649279\t\nBeats Powerbeats2 Wireless\t2009\t8587563\t\nGoogle Nexus 9\t2007\t8516046\t\nTiVo Bolt\t2008\t8509983\t\nLenovo Yoga 3 14\t2007\t8505221\t\nSamsung Galaxy S5\t2007\t8471442\t\nSamsung Galaxy Tab A 8.0\t2007\t8466085\t\nRoku 4\t2008\t8410673\t\nFitbit Charge HR\t2009\t8357840\t\nSamsung Gear VR (2015)\t2007\t8335326\t\nApple iPad Mini 4\t2008\t8332959\t\niPad Air 2\t2007\t8280944\t\nBeats Studio Wireless Headphones\t2007\t8166850\t\nTiVo Bolt\t2009\t8082850\t\nBose SoundLink Mini II\t2009\t8066174\t\nVizio SB4051-C0\t2008\t8027770\t\nBlackBerry Priv\t2009\t7994241\t\nSamsung Galaxy S6 Edge\t2007\t7917417\t\nBeats Solo 2\t2008\t7900398\t\nRoku 2 (2015)\t2009\t7898673\t\niPad Mini 2\t2009\t7854789\t\nSimpliSafe Home Security\t2009\t7775504\t\nBeats Powerbeats2 Wireless\t2008\t7683816\t\nSamsung Galaxy S4\t2007\t7672543\t\nApple iPhone 5\t2007\t7649486\t\nHP Stream 11\t2008\t7602670\t\nRoku 4\t2007\t7524706\t\nApple iPhone 6S\t2007\t7442761\t\nLG G Stylo\t2009\t7329899\t\nGoogle Nexus 6\t2009\t7273122\t\nVizio E series (2015)\t2008\t7267760\t\n","comment":"","msgTable":[[{"key":"year_visited","value":"iPad Mini 2"},{"key":"year_visited","value":"2007"},{"key":"year_visited","value":"22345213"},{"key":"year_visited","value":""}],[{"key":"total_time","value":"iPad Air 2"},{"key":"total_time","value":"2008"},{"key":"total_time","value":"20319952"},{"key":"total_time","value":""}],[{"value":"Google Nexus 6P"},{"value":"2009"},{"value":"18986943"},{"value":""}],[{"value":"Microsoft Xbox One"},{"value":"2007"},{"value":"18364357"},{"value":""}],[{"value":"Sennheiser Momentum 2.0"},{"value":"2008"},{"value":"18296169"},{"value":""}],[{"value":"GoPro Hero3"},{"value":"2008"},{"value":"17772811"},{"value":""}],[{"value":"Microsoft Surface Pro 4"},{"value":"2007"},{"value":"15856442"},{"value":""}],[{"value":"Microsoft Surface Pro 4"},{"value":"2009"},{"value":"15744650"},{"value":""}],[{"value":"Chromecast Audio"},{"value":"2007"},{"value":"15061838"},{"value":""}],[{"value":"Apple Watch"},{"value":"2008"},{"value":"14914757"},{"value":""}],[{"value":"Beats Solo 2"},{"value":"2007"},{"value":"14892076"},{"value":""}],[{"value":"Samsung UNJS8500 series"},{"value":"2009"},{"value":"14552895"},{"value":""}],[{"value":"Samsung Galaxy S6"},{"value":"2008"},{"value":"14125932"},{"value":""}],[{"value":"Samsung Galaxy S4"},{"value":"2008"},{"value":"14031774"},{"value":""}],[{"value":"Apple TV (2015)"},{"value":"2009"},{"value":"13968980"},{"value":""}],[{"value":"Amazon Echo"},{"value":"2008"},{"value":"13684607"},{"value":""}],[{"value":"HTC One M9"},{"value":"2007"},{"value":"13661875"},{"value":""}],[{"value":"Apple MacBook Pro with Retina Display (13-inch"},{"value":"2009"},{"value":"13477337"},{"value":""}],[{"value":"Nest Cam"},{"value":"2007"},{"value":"13339656"},{"value":""}],[{"value":"Apple TV"},{"value":"2008"},{"value":"13303115"},{"value":""}],[{"value":"Roku 3 (2015)"},{"value":"2009"},{"value":"13034106"},{"value":""}],[{"value":"Roku 3 (2015)"},{"value":"2008"},{"value":"12983711"},{"value":""}],[{"value":"Lenovo Yoga 3 14"},{"value":"2008"},{"value":"12915838"},{"value":""}],[{"value":"Beats Studio Wireless Headphones"},{"value":"2008"},{"value":"12758297"},{"value":""}],[{"value":"Microsoft Surface Book"},{"value":"2007"},{"value":"12662363"},{"value":""}],[{"value":"Bose SoundLink Around-Ear Wireless Headphones II"},{"value":"2008"},{"value":"12026303"},{"value":""}],[{"value":"Chromecast Audio"},{"value":"2009"},{"value":"11884001"},{"value":""}],[{"value":"LG G4"},{"value":"2007"},{"value":"11737053"},{"value":""}],[{"value":"Fitbit Charge HR"},{"value":"2007"},{"value":"11588749"},{"value":""}],[{"value":"TCL S3800 series (Roku TV"},{"value":"2007"},{"value":"11389855"},{"value":""}],[{"value":"JBL Charge 2+"},{"value":"2009"},{"value":"11250144"},{"value":""}],[{"value":"Sony Alpha 6000 (ILCE-6000)"},{"value":"2008"},{"value":"11190585"},{"value":""}],[{"value":"Google Nexus 6"},{"value":"2007"},{"value":"11142680"},{"value":""}],[{"value":"Roku 4"},{"value":"2009"},{"value":"11021428"},{"value":""}],[{"value":"Nikon D3300"},{"value":"2009"},{"value":"10972510"},{"value":""}],[{"value":"BlackBerry Priv"},{"value":"2008"},{"value":"10674974"},{"value":""}],[{"value":"Apple TV (2015)"},{"value":"2007"},{"value":"10639746"},{"value":""}],[{"value":"Samsung Galaxy Tab S2"},{"value":"2007"},{"value":"10572097"},{"value":""}],[{"value":"iPad Air 2"},{"value":"2009"},{"value":"10484452"},{"value":""}],[{"value":"HTC One M9"},{"value":"2008"},{"value":"10460121"},{"value":""}],[{"value":"iPad Pro"},{"value":"2009"},{"value":"10456427"},{"value":""}],[{"value":"Google Nexus 6P"},{"value":"2008"},{"value":"10450273"},{"value":""}],[{"value":"Chromecast Audio"},{"value":"2008"},{"value":"10442808"},{"value":""}],[{"value":"Asus Chromebit"},{"value":"2008"},{"value":"10416952"},{"value":""}],[{"value":"iPad Pro"},{"value":"2007"},{"value":"10383155"},{"value":""}],[{"value":"Vizio M series (2015)"},{"value":"2009"},{"value":"10350015"},{"value":""}],[{"value":"Lenovo Yoga 900"},{"value":"2007"},{"value":"10219478"},{"value":""}],[{"value":"Bose SoundLink Bluetooth Speaker III"},{"value":"2008"},{"value":"10171260"},{"value":""}],[{"value":"SAMSUNG GALAXY NOTE 5"},{"value":"2009"},{"value":"10036744"},{"value":""}],[{"value":"LG V10 (unlocked)"},{"value":"2007"},{"value":"9937043"},{"value":""}],[{"value":"Asus Chromebit"},{"value":"2007"},{"value":"9932073"},{"value":""}],[{"value":"LG G4"},{"value":"2008"},{"value":"9917763"},{"value":""}],[{"value":"BlackBerry Priv"},{"value":"2007"},{"value":"9791339"},{"value":""}],[{"value":"Amazon Kindle Paperwhite (2015)"},{"value":"2009"},{"value":"9718983"},{"value":""}],[{"value":"Bose SoundLink Bluetooth Speaker III"},{"value":"2007"},{"value":"9676734"},{"value":""}],[{"value":"GoPro Hero4 Silver"},{"value":"2009"},{"value":"9566802"},{"value":""}],[{"value":"Microsoft Surface Pro 3"},{"value":"2008"},{"value":"9472396"},{"value":""}],[{"value":"JBL Flip 3"},{"value":"2008"},{"value":"9467013"},{"value":""}],[{"value":"Vizio E series (2015)"},{"value":"2007"},{"value":"9450656"},{"value":""}],[{"value":"Nest Learning Thermostat Third Generation"},{"value":"2009"},{"value":"9283940"},{"value":""}],[{"value":"Microsoft Xbox One"},{"value":"2008"},{"value":"9187780"},{"value":""}],[{"value":"Samsung Galaxy S6 Active"},{"value":"2009"},{"value":"9096655"},{"value":""}],[{"value":"Apple iPhone 6S"},{"value":"2009"},{"value":"9009430"},{"value":""}],[{"value":"Apple MacBook (12-inch"},{"value":"2007"},{"value":"8987124"},{"value":""}],[{"value":"Samsung Gear S2"},{"value":"2008"},{"value":"8843350"},{"value":""}],[{"value":"Roku 2 (2015)"},{"value":"2008"},{"value":"8821836"},{"value":""}],[{"value":"TiVo Bolt"},{"value":"2007"},{"value":"8765784"},{"value":""}],[{"value":"Apple iPhone 5"},{"value":"2008"},{"value":"8753603"},{"value":""}],[{"value":"Nest Learning Thermostat Third Generation"},{"value":"2007"},{"value":"8724107"},{"value":""}],[{"value":"Roku 3 (2015)"},{"value":"2007"},{"value":"8649279"},{"value":""}],[{"value":"Beats Powerbeats2 Wireless"},{"value":"2009"},{"value":"8587563"},{"value":""}],[{"value":"Google Nexus 9"},{"value":"2007"},{"value":"8516046"},{"value":""}],[{"value":"TiVo Bolt"},{"value":"2008"},{"value":"8509983"},{"value":""}],[{"value":"Lenovo Yoga 3 14"},{"value":"2007"},{"value":"8505221"},{"value":""}],[{"value":"Samsung Galaxy S5"},{"value":"2007"},{"value":"8471442"},{"value":""}],[{"value":"Samsung Galaxy Tab A 8.0"},{"value":"2007"},{"value":"8466085"},{"value":""}],[{"value":"Roku 4"},{"value":"2008"},{"value":"8410673"},{"value":""}],[{"value":"Fitbit Charge HR"},{"value":"2009"},{"value":"8357840"},{"value":""}],[{"value":"Samsung Gear VR (2015)"},{"value":"2007"},{"value":"8335326"},{"value":""}],[{"value":"Apple iPad Mini 4"},{"value":"2008"},{"value":"8332959"},{"value":""}],[{"value":"iPad Air 2"},{"value":"2007"},{"value":"8280944"},{"value":""}],[{"value":"Beats Studio Wireless Headphones"},{"value":"2007"},{"value":"8166850"},{"value":""}],[{"value":"TiVo Bolt"},{"value":"2009"},{"value":"8082850"},{"value":""}],[{"value":"Bose SoundLink Mini II"},{"value":"2009"},{"value":"8066174"},{"value":""}],[{"value":"Vizio SB4051-C0"},{"value":"2008"},{"value":"8027770"},{"value":""}],[{"value":"BlackBerry Priv"},{"value":"2009"},{"value":"7994241"},{"value":""}],[{"value":"Samsung Galaxy S6 Edge"},{"value":"2007"},{"value":"7917417"},{"value":""}],[{"value":"Beats Solo 2"},{"value":"2008"},{"value":"7900398"},{"value":""}],[{"value":"Roku 2 (2015)"},{"value":"2009"},{"value":"7898673"},{"value":""}],[{"value":"iPad Mini 2"},{"value":"2009"},{"value":"7854789"},{"value":""}],[{"value":"SimpliSafe Home Security"},{"value":"2009"},{"value":"7775504"},{"value":""}],[{"value":"Beats Powerbeats2 Wireless"},{"value":"2008"},{"value":"7683816"},{"value":""}],[{"value":"Samsung Galaxy S4"},{"value":"2007"},{"value":"7672543"},{"value":""}],[{"value":"Apple iPhone 5"},{"value":"2007"},{"value":"7649486"},{"value":""}],[{"value":"HP Stream 11"},{"value":"2008"},{"value":"7602670"},{"value":""}],[{"value":"Roku 4"},{"value":"2007"},{"value":"7524706"},{"value":""}],[{"value":"Apple iPhone 6S"},{"value":"2007"},{"value":"7442761"},{"value":""}],[{"value":"LG G Stylo"},{"value":"2009"},{"value":"7329899"},{"value":""}],[{"value":"Google Nexus 6"},{"value":"2009"},{"value":"7273122"},{"value":""}],[{"value":"Vizio E series (2015)"},{"value":"2008"},{"value":"7267760"},{"value":""}]],"columnNames":[{"name":"product","index":0,"aggr":"sum"},{"name":"year_visited","index":1,"aggr":"sum"},{"name":"total_time","index":2,"aggr":"sum"}],"rows":[["iPad Mini 2","2007","22345213",""],["iPad Air 2","2008","20319952",""],["Google Nexus 6P","2009","18986943",""],["Microsoft Xbox One","2007","18364357",""],["Sennheiser Momentum 2.0","2008","18296169",""],["GoPro Hero3","2008","17772811",""],["Microsoft Surface Pro 4","2007","15856442",""],["Microsoft Surface Pro 4","2009","15744650",""],["Chromecast Audio","2007","15061838",""],["Apple Watch","2008","14914757",""],["Beats Solo 2","2007","14892076",""],["Samsung UNJS8500 series","2009","14552895",""],["Samsung Galaxy S6","2008","14125932",""],["Samsung Galaxy S4","2008","14031774",""],["Apple TV (2015)","2009","13968980",""],["Amazon Echo","2008","13684607",""],["HTC One M9","2007","13661875",""],["Apple MacBook Pro with Retina Display (13-inch","2009","13477337",""],["Nest Cam","2007","13339656",""],["Apple TV","2008","13303115",""],["Roku 3 (2015)","2009","13034106",""],["Roku 3 (2015)","2008","12983711",""],["Lenovo Yoga 3 14","2008","12915838",""],["Beats Studio Wireless Headphones","2008","12758297",""],["Microsoft Surface Book","2007","12662363",""],["Bose SoundLink Around-Ear Wireless Headphones II","2008","12026303",""],["Chromecast Audio","2009","11884001",""],["LG G4","2007","11737053",""],["Fitbit Charge HR","2007","11588749",""],["TCL S3800 series (Roku TV","2007","11389855",""],["JBL Charge 2+","2009","11250144",""],["Sony Alpha 6000 (ILCE-6000)","2008","11190585",""],["Google Nexus 6","2007","11142680",""],["Roku 4","2009","11021428",""],["Nikon D3300","2009","10972510",""],["BlackBerry Priv","2008","10674974",""],["Apple TV (2015)","2007","10639746",""],["Samsung Galaxy Tab S2","2007","10572097",""],["iPad Air 2","2009","10484452",""],["HTC One M9","2008","10460121",""],["iPad Pro","2009","10456427",""],["Google Nexus 6P","2008","10450273",""],["Chromecast Audio","2008","10442808",""],["Asus Chromebit","2008","10416952",""],["iPad Pro","2007","10383155",""],["Vizio M series (2015)","2009","10350015",""],["Lenovo Yoga 900","2007","10219478",""],["Bose SoundLink Bluetooth Speaker III","2008","10171260",""],["SAMSUNG GALAXY NOTE 5","2009","10036744",""],["LG V10 (unlocked)","2007","9937043",""],["Asus Chromebit","2007","9932073",""],["LG G4","2008","9917763",""],["BlackBerry Priv","2007","9791339",""],["Amazon Kindle Paperwhite (2015)","2009","9718983",""],["Bose SoundLink Bluetooth Speaker III","2007","9676734",""],["GoPro Hero4 Silver","2009","9566802",""],["Microsoft Surface Pro 3","2008","9472396",""],["JBL Flip 3","2008","9467013",""],["Vizio E series (2015)","2007","9450656",""],["Nest Learning Thermostat Third Generation","2009","9283940",""],["Microsoft Xbox One","2008","9187780",""],["Samsung Galaxy S6 Active","2009","9096655",""],["Apple iPhone 6S","2009","9009430",""],["Apple MacBook (12-inch","2007","8987124",""],["Samsung Gear S2","2008","8843350",""],["Roku 2 (2015)","2008","8821836",""],["TiVo Bolt","2007","8765784",""],["Apple iPhone 5","2008","8753603",""],["Nest Learning Thermostat Third Generation","2007","8724107",""],["Roku 3 (2015)","2007","8649279",""],["Beats Powerbeats2 Wireless","2009","8587563",""],["Google Nexus 9","2007","8516046",""],["TiVo Bolt","2008","8509983",""],["Lenovo Yoga 3 14","2007","8505221",""],["Samsung Galaxy S5","2007","8471442",""],["Samsung Galaxy Tab A 8.0","2007","8466085",""],["Roku 4","2008","8410673",""],["Fitbit Charge HR","2009","8357840",""],["Samsung Gear VR (2015)","2007","8335326",""],["Apple iPad Mini 4","2008","8332959",""],["iPad Air 2","2007","8280944",""],["Beats Studio Wireless Headphones","2007","8166850",""],["TiVo Bolt","2009","8082850",""],["Bose SoundLink Mini II","2009","8066174",""],["Vizio SB4051-C0","2008","8027770",""],["BlackBerry Priv","2009","7994241",""],["Samsung Galaxy S6 Edge","2007","7917417",""],["Beats Solo 2","2008","7900398",""],["Roku 2 (2015)","2009","7898673",""],["iPad Mini 2","2009","7854789",""],["SimpliSafe Home Security","2009","7775504",""],["Beats Powerbeats2 Wireless","2008","7683816",""],["Samsung Galaxy S4","2007","7672543",""],["Apple iPhone 5","2007","7649486",""],["HP Stream 11","2008","7602670",""],["Roku 4","2007","7524706",""],["Apple iPhone 6S","2007","7442761",""],["LG G Stylo","2009","7329899",""],["Google Nexus 6","2009","7273122",""],["Vizio E series (2015)","2008","7267760",""]]},"dateCreated":"2016-01-13T10:35:00+0000","dateStarted":"2016-01-15T03:47:05+0000","dateFinished":"2016-01-15T03:47:31+0000","status":"FINISHED","progressUpdateIntervalMs":500,"$$hashKey":"object:1754"},{"text":"%md\n##### Query C - most popular web_path \n\nTODO: further improvement to analyze paths of minimum length","dateUpdated":"2016-01-13T10:46:27+0000","config":{"colWidth":12,"graph":{"mode":"table","height":300,"optionOpen":false,"keys":[],"values":[],"groups":[],"scatter":{}},"editorMode":"ace/mode/markdown","editorHide":true,"enabled":true},"settings":{"params":{},"forms":{}},"jobName":"paragraph_1452724536034_371815995","id":"20160113-223536_1474440938","result":{"code":"SUCCESS","type":"HTML","msg":"
Query C - most popular web_path
\n

TODO: further improvement to analyze paths of minimum length

\n"},"dateCreated":"2016-01-13T10:35:36+0000","dateStarted":"2016-01-13T10:46:14+0000","dateFinished":"2016-01-13T10:46:16+0000","status":"FINISHED","progressUpdateIntervalMs":500,"$$hashKey":"object:1755"},{"text":"%hive\nselect web_path,count(1) as path_count\nfrom\n(select session,concat_ws(\"->\",collect_list(product)) as web_path\nfrom weblog group by session) table1\ngroup by web_path\norder by path_count desc","dateUpdated":"2016-01-15T04:11:04+0000","config":{"colWidth":12,"graph":{"mode":"table","height":300,"optionOpen":false,"keys":[],"values":[],"groups":[],"scatter":{}},"editorMode":"ace/mode/scala","enabled":true},"settings":{"params":{},"forms":{}},"jobName":"paragraph_1452725174403_1648549119","id":"20160113-224614_841055273","result":{"code":"SUCCESS","type":"TABLE","msg":"web_path\tpath_count\nAmazon Echo->Lenovo Yoga 3 14->Bose SoundLink Mini II->Microsoft Lumia 950->iPad Pro->Beats Powerbeats2 Wireless->Asus AC2400 RT-AC87U Dual-band Wireless Gigabit Router->Netgear Arlo Smart Home Security->Nest Learning Thermostat->Roku 3 (2015)->Google Nexus 6->Nest Learning Thermostat Third Generation->Sony Xperia Z5 Premium->Fitbit Charge HR->Bose SoundLink Bluetooth Speaker III->Nikon D3300->Samsung SSD 850 Evo->Samsung UNJS8500 series->Nest Cam->Lenovo Yoga 900->Bose SoundLink Around-Ear Wireless Headphones II->Roku 2 (2015)->Vizio M series (2015)->Apple TV->Lenovo Yoga 900->Sony Alpha 6000 (ILCE-6000)->GoPro Hero3->Apple iPad Mini 4->UE Boom 2->Samsung Galaxy S6 Edge->SimpliSafe Home Security->Vizio E series (2015)->GoPro Hero4 Silver->TCL S3800 series (Roku TV->UE Boom 2->Samsung Galaxy Grand Prime->Sennheiser Momentum 2.0->Apple TV (2015)->Samsung Galaxy Grand Prime->Apple iPhone 6 Plus->Samsung Galaxy S4->Apple CarPlay->Apple MacBook Pro with Retina Display (13-inch->Bose SoundLink Around-Ear Wireless Headphones II->Samsung SSD 850 Evo->Jawbone Up2->iPhone 6S Plus->Apple TV (2015)\t1\t\nApple MacBook Pro with Retina Display (13-inch->Samsung Galaxy S5->Samsung Galaxy S5->Samsung Galaxy S6 Active->Sennheiser Momentum 2.0->Jawbone Up2->Beats Solo 2->Microsoft Xbox One->Fitbit Charge HR->Google Nexus 6->Vizio M series (2015)->Samsung Galaxy S6 Edge->BlackBerry Priv->Sennheiser HD 598->Google Nexus 5X->Samsung Galaxy S6 Edge+->Vizio SB4051-C0->Google Nexus 9->Samsung Gear S2->Samsung Galaxy Core Prime->Bose SoundLink Bluetooth Speaker III->Vizio E series (2015)->Samsung SSD 850 Evo->LG G4->Sony Xperia Z5 Premium->GoPro Hero4 Silver->SAMSUNG GALAXY NOTE 5->Apple MacBook Pro with Retina Display (13-inch->Jawbone Up2->Samsung Galaxy S5->Bose SoundLink Around-Ear Wireless Headphones II->Vizio SB4051-C0->TiVo Bolt->Samsung Galaxy Note 4->Samsung Galaxy S6 Edge+->TCL S3800 series (Roku TV->Lenovo Yoga 900->Amazon Echo->UE Boom 2->Samsung Galaxy S5\t1\t\nAsus RT-AC68U Dual-band Wireless-AC1900 Gigabit Router->Samsung Galaxy S6 Edge+->Asus Chromebit->Sony Alpha 6000 (ILCE-6000)->Sennheiser HD 598->Google Nexus 6->Samsung Galaxy Core Prime->Samsung Galaxy Core Prime->Google Nexus 6->Samsung Galaxy S5->GoPro Hero4 Silver->iPad Pro->Google Nexus 6P->Apple Watch->Bose SoundLink Bluetooth Speaker III->JBL Charge 2+->Asus AC2400 RT-AC87U Dual-band Wireless Gigabit Router->Apple Watch->Google Nexus 6->Beats Solo 2->Apple CarPlay->BlackBerry Priv->Samsung Gear VR (2015)->Samsung Galaxy S6 Active->LG G Stylo->Bose QuietComfort 25->TCL S3800 series (Roku TV->Roku 4->HP Spectre x360->Nest Learning Thermostat Third Generation->Samsung Galaxy Core Prime->Apple TV->Sony Alpha 6000 (ILCE-6000)->Bose QuietComfort 25->HP Stream 11->Sony Xperia Z5 Premium->SimpliSafe Home Security->Jawbone Up2->Motorola Droid Turbo 2->Apple iPhone 6S->Audio-Technica ATH-M50x->LG V10 (unlocked)->Samsung Galaxy S5->Bose SoundLink Mini II->Asus AC2400 RT-AC87U Dual-band Wireless Gigabit Router->Samsung Galaxy S6->Apple iPhone 6S->Asus Chromebit->Google Nexus 9->Apple iPad Mini 4\t1\t\nBeats Powerbeats2 Wireless->LG EF9500 series->Lenovo Yoga 3 14->Bose SoundLink Around-Ear Wireless Headphones II->Vizio M series (2015)->Sennheiser HD 598->TCL FS4610R (Roku TV)->SimpliSafe Home Security->LG V10 (unlocked)->LG V10 (unlocked)->Bose SoundLink Bluetooth Speaker III->Roku 3 (2015)->Apple TV->Bose QuietComfort 25->Sony Xperia Z5->JBL Flip 3->Roku 2 (2015)->Lenovo Yoga 900->Amazon Kindle Paperwhite (2015)->Apple iPhone 5S->HTC One M9->Samsung Galaxy S4->Asus RT-AC68U Dual-band Wireless-AC1900 Gigabit Router->Apple Watch->Asus AC2400 RT-AC87U Dual-band Wireless Gigabit Router->GoPro Hero4 Silver->iPad Air 2->LG EF9500 series->Bose SoundLink Around-Ear Wireless Headphones II->Vizio M series (2015)->iPad Mini 2->HTC One M9->Apple iPhone 6S->Beats Solo 2->Apple MacBook (12-inch->Nikon D3300->TCL S3800 series (Roku TV->Samsung Galaxy S6 Edge->LG G Stylo->HTC One M9->Microsoft Surface Pro 3->Apple iPhone 6->Samsung Galaxy S4->iPad Pro->Apple iPhone 6S->Lenovo Yoga 900->Apple TV (2015)->JBL Charge 2+->Microsoft Xbox One->Chromecast Audio\t1\t\nBeats Solo 2->Chromecast Audio->Microsoft Surface Pro 3->Bose SoundLink Around-Ear Wireless Headphones II->Samsung Gear S2->Samsung Galaxy Core Prime->Sennheiser Momentum 2.0->Roku 2 (2015)->Chromecast Audio->Google Nexus 6P->Samsung Galaxy S5->Samsung UNJS8500 series->LG G3->Apple Watch->Ninja Coffee Bar->Google Nexus 6P->Samsung Galaxy Tab A 8.0->Apple MacBook Pro with Retina Display (13-inch->Samsung Galaxy S5->Apple CarPlay->Apple iPhone 5->Apple iPhone 5->Vizio M series (2015)->Beats Solo 2->HP Spectre x360->iPad Air 2->iPad Pro->Amazon Echo->Bose SoundLink Bluetooth Speaker III->Sennheiser HD 598->Amazon Echo->Samsung Galaxy S6->Apple iPhone 6S->Apple TV->JBL Charge 2+->Fitbit Charge HR->LG V10 (unlocked)->iPad Pro->Roku 4->LG EF9500 series->Vizio E series (2015)->Apple iPhone 6->Motorola Droid Turbo 2->LG G Stylo->Sony Xperia Z5->Sony Alpha 6000 (ILCE-6000)->Microsoft Surface Pro 3->Samsung Galaxy Tab A 8.0->Apple CarPlay\t1\t\nBlackBerry Priv->SAMSUNG GALAXY NOTE 5->HP Spectre x360->iPad Mini 2->Samsung Gear S2->Amazon Kindle Paperwhite (2015)->Vizio SB4051-C0->Apple MacBook Pro with Retina Display (13-inch->Roku 3 (2015)->Nest Learning Thermostat Third Generation->Samsung Galaxy S6 Active->iPad Air 2->Apple TV (2015)->BlackBerry Priv->Beats Studio Wireless Headphones->Samsung UNJU7100 series->LG EF9500 series->Lenovo Yoga 3 14->Bose SoundLink Bluetooth Speaker III->Samsung Galaxy S5->Apple MacBook Pro with Retina Display (13-inch->Samsung UNJS8500 series->iPad Air 2->Fitbit Charge HR->Beats Powerbeats2 Wireless->Vizio SB4051-C0->Beats Studio Wireless Headphones->Beats Solo 2->Apple Watch->iPad Mini 2->Bose QuietComfort 25->TCL FS4610R (Roku TV)->Roku 2 (2015)->SAMSUNG GALAXY NOTE 5->Apple TV->Bose SoundLink Bluetooth Speaker III->iPad Pro->Asus Chromebit->Samsung Galaxy Grand Prime->Nest Learning Thermostat->Fitbit Charge HR->TiVo Bolt->Google Nexus 5X->Beats Studio Wireless Headphones->Lenovo Yoga 3 14->Sennheiser Momentum 2.0->Google Nexus 6P\t1\t\nBose SoundLink Bluetooth Speaker III->Google Nexus 9->Apple iPhone 5S->Sony Alpha 6000 (ILCE-6000)->GoPro Hero4 Silver->LG G3->Sony Alpha 6000 (ILCE-6000)->Samsung Galaxy S4->Bose SoundLink Mini II->HTC One M9->Audio-Technica ATH-M50x->Bose SoundLink Mini II->Amazon Echo->Roku 2 (2015)->iPad Mini 2->HP Stream 11->Apple TV (2015)->Samsung UNJS8500 series->Apple iPhone 6 Plus->Apple iPhone 5->Microsoft Lumia 950->Microsoft Surface Book->Apple TV->Amazon Kindle Paperwhite (2015)->Netgear Arlo Smart Home Security->Microsoft Surface Pro 3->Vizio E series (2015)->Apple MacBook Air (13-inch->Nest Learning Thermostat->Google Nexus 5X->Ninja Coffee Bar->Bose SoundLink Around-Ear Wireless Headphones II->LG G Stylo->Samsung Galaxy S6 Edge+->iPhone 6S Plus->Bose QuietComfort 25->Apple MacBook Air (13-inch->Lenovo Yoga 3 14\t1\t\nBose SoundLink Bluetooth Speaker III->JBL Flip 3->Google Nexus 6P->Apple CarPlay->Google Nexus 9->Apple TV->Roku 2 (2015)->Beats Solo 2->Jawbone Up2->Samsung Galaxy S6->Samsung Galaxy S6 Edge->Amazon Kindle Paperwhite (2015)->Apple CarPlay->TCL FS4610R (Roku TV)->HP Stream 11->Samsung Galaxy Note 4->Samsung Galaxy S6 Edge+->Apple MacBook Pro with Retina Display (13-inch->Vizio M series (2015)->LG G Stylo->Microsoft Xbox One->Microsoft Xbox One->Vizio E series (2015)->Microsoft Surface Pro 3->Roku 3 (2015)->Samsung Galaxy S4->Audio-Technica ATH-M50x->Microsoft Surface Pro 4->Samsung UNJS8500 series->Nest Cam->Asus AC2400 RT-AC87U Dual-band Wireless Gigabit Router->Apple TV (2015)->Ninja Coffee Bar->Jawbone Up2\t1\t\nDyson v6->Microsoft Surface Pro 4->iPad Air 2->LG G4->Samsung Galaxy Tab S2->Samsung SSD 850 Evo->JBL Charge 2+->Apple iPhone 5S->Lenovo Yoga 900->Ninja Coffee Bar->TCL S3800 series (Roku TV->Asus AC2400 RT-AC87U Dual-band Wireless Gigabit Router->Beats Powerbeats2 Wireless->BlackBerry Priv->Samsung Galaxy Core Prime->Vizio M series (2015)->Samsung Galaxy S6 Edge->Vizio E series (2015)->Roku 4->Apple iPhone 6 Plus->Apple iPad Mini 4->HTC One M9->Roku 4->Apple iPhone 6S->Lenovo Yoga 3 14->Apple iPhone 6 Plus->GoPro Hero3->Samsung Galaxy Grand Prime->LG G Stylo->Roku 2 (2015)->JBL Charge 2+->Beats Studio Wireless Headphones->TCL S3800 series (Roku TV->Ninja Coffee Bar->HTC One M9->Vizio SB4051-C0->Bose SoundLink Mini II->Microsoft Surface Book->BlackBerry Priv->Sony Alpha 6000 (ILCE-6000)->Samsung UNJS8500 series->Sennheiser Momentum 2.0\t1\t\nGoPro Hero4 Silver->Apple iPhone 5->Vizio M series (2015)->Jawbone Up2->Asus Chromebit->Google Nexus 6->JBL Charge 2+->Sennheiser Momentum 2.0->Samsung SSD 850 Evo->TCL FS4610R (Roku TV)->Apple TV->Google Nexus 5X->Chromecast Audio->TCL FS4610R (Roku TV)->Jawbone Up2->Vizio E series (2015)->Bose SoundLink Around-Ear Wireless Headphones II->Apple TV (2015)->Roku 2 (2015)->Bose SoundLink Mini II->Samsung UNJS8500 series->Jawbone Up2->Lenovo Yoga 900->GoPro Hero3->Microsoft Surface Pro 3->HP Spectre x360->HP Stream 11->Amazon Kindle Paperwhite (2015)->Apple TV (2015)->Samsung Galaxy Tab A 8.0->Apple CarPlay->TiVo Bolt->GoPro Hero4 Silver->Google Nexus 6->Nikon D3300->Google Nexus 6->Google Nexus 9->JBL Flip 3->SimpliSafe Home Security->Apple iPhone 6S->SAMSUNG GALAXY NOTE 5->Ninja Coffee Bar\t1\t\nGoogle Nexus 6P->Apple Watch->LG G3->HP Spectre x360->Samsung UNJS8500 series->Vizio E series (2015)->Beats Solo 2->LG G3->Audio-Technica ATH-M50x->Ninja Coffee Bar->Apple iPhone 5S->Samsung Gear VR (2015)->JBL Charge 2+->Samsung SSD 850 Evo->Apple iPhone 5->Asus RT-AC68U Dual-band Wireless-AC1900 Gigabit Router->HP Spectre x360->Vizio E series (2015)->Lenovo Yoga 3 14->Google Nexus 6->Google Nexus 6P->Samsung UNJS8500 series->Amazon Echo->Audio-Technica ATH-M50x->Samsung Galaxy S5->Microsoft Surface Book->LG V10 (unlocked)->Vizio M series (2015)->Samsung SSD 850 Evo->Samsung Galaxy Tab A 8.0->LG G Stylo->Nest Cam->Apple Watch->Apple iPhone 6 Plus->Asus AC2400 RT-AC87U Dual-band Wireless Gigabit Router->Google Nexus 9->BlackBerry Priv->Google Nexus 5X->Nest Learning Thermostat Third Generation\t1\t\nGoogle Nexus 6P->Nikon D3300->LG G3->Vizio SB4051-C0->Microsoft Surface Pro 3->Samsung UNJS8500 series->Microsoft Surface Pro 3->Bose SoundLink Bluetooth Speaker III->Sony Xperia Z5 Premium->Sony Alpha 6000 (ILCE-6000)->Bose SoundLink Mini II->Apple TV->Microsoft Surface Pro 4->HP Spectre x360->Vizio E series (2015)->LG G4->HP Spectre x360->LG G3->JBL Charge 2+->Sennheiser Momentum 2.0->Samsung Galaxy Note 4->TiVo Bolt->Nest Cam->SimpliSafe Home Security->LG V10 (unlocked)->Samsung Galaxy Grand Prime->Google Nexus 6P->Dyson v6->Apple iPhone 6 Plus->Asus AC2400 RT-AC87U Dual-band Wireless Gigabit Router\t1\t\nHTC One M9->Roku 3 (2015)->iPad Pro->Beats Powerbeats2 Wireless->SimpliSafe Home Security->Sony Alpha 6000 (ILCE-6000)->TCL S3800 series (Roku TV->Google Nexus 6P->Bose SoundLink Bluetooth Speaker III->Apple iPad Mini 4->Fitbit Charge HR->Apple iPhone 5S->Apple TV (2015)->Samsung Galaxy S6 Edge+->Apple iPhone 6 Plus->Jawbone Up2->iPad Pro->Sony Xperia Z5->Samsung Galaxy S6->HTC One M9->Microsoft Surface Book->Apple MacBook (12-inch->Sennheiser Momentum 2.0->Asus RT-AC68U Dual-band Wireless-AC1900 Gigabit Router->Roku 4->Apple Watch->TCL S3800 series (Roku TV->Amazon Echo->Google Nexus 9->Apple iPhone 6 Plus->Apple TV (2015)->Lenovo Yoga 900->Apple MacBook Pro with Retina Display (13-inch\t1\t\nLG G3->Beats Studio Wireless Headphones->Audio-Technica ATH-M50x->iPad Air 2->Lenovo Yoga 3 14->Apple MacBook Air (13-inch->Beats Solo 2->Nikon D3300->SAMSUNG GALAXY NOTE 5->Google Nexus 6->Samsung Galaxy Tab A 8.0->Beats Powerbeats2 Wireless->HP Stream 11->Bose SoundLink Bluetooth Speaker III->iPad Air 2->Sony Xperia Z5 Premium->Vizio E series (2015)->Apple iPhone 5S->Jawbone Up2->Roku 2 (2015)->Apple CarPlay->Microsoft Surface Pro 3->Vizio SB4051-C0->Bose SoundLink Mini II->GoPro Hero3->Samsung Galaxy Note 4->Microsoft Surface Book->Google Nexus 5X->Amazon Kindle Paperwhite (2015)->Apple iPhone 6->Apple TV (2015)->Microsoft Surface Pro 4->Google Nexus 6P->Netgear Arlo Smart Home Security->Sony Xperia Z5->Samsung Gear S2->Samsung Gear VR (2015)->Roku 3 (2015)->GoPro Hero3->Microsoft Surface Pro 3->iPad Air 2->SimpliSafe Home Security->Apple MacBook Pro with Retina Display (13-inch->Yamaha YAS-203->iPad Mini 2\t1\t\nMicrosoft Surface Pro 4->Nikon D3300->Beats Powerbeats2 Wireless->Apple iPhone 5S->SimpliSafe Home Security->Bose SoundLink Bluetooth Speaker III->Microsoft Xbox One->Apple iPhone 6S->Lenovo Yoga 3 14->Amazon Kindle Paperwhite (2015)->JBL Flip 3->LG V10 (unlocked)->Yamaha YAS-203->UE Boom 2->LG G4->Fitbit Charge HR->Microsoft Surface Book->Jawbone Up2->Asus AC2400 RT-AC87U Dual-band Wireless Gigabit Router->iPhone 6S Plus->iPad Pro->Nest Learning Thermostat Third Generation->iPhone 6S Plus->Dyson v6->Asus RT-AC68U Dual-band Wireless-AC1900 Gigabit Router->Asus RT-AC68U Dual-band Wireless-AC1900 Gigabit Router->Microsoft Lumia 950->Asus Chromebit->Apple Watch->Sony Alpha 6000 (ILCE-6000)->Vizio SB4051-C0->JBL Charge 2+->Samsung SSD 850 Evo->Apple MacBook Air (13-inch->Samsung Gear S2->Samsung Galaxy S4->iPad Mini 2->Apple MacBook (12-inch->Amazon Kindle Paperwhite (2015)->Fitbit Charge HR->LG G4->GoPro Hero4 Silver->Apple Watch->BlackBerry Priv\t1\t\nNest Learning Thermostat->Samsung Galaxy Note 4->Apple MacBook Pro with Retina Display (13-inch->Samsung Galaxy Core Prime->Jawbone Up2->Samsung Galaxy S6 Edge+->Vizio M series (2015)->Samsung UNJU7100 series->TiVo Bolt->Apple TV->Google Nexus 9->LG V10 (unlocked)->Sony Alpha 6000 (ILCE-6000)->Lenovo Yoga 3 14->Sennheiser Momentum 2.0->LG G Stylo->HTC One M9->iPhone 6S Plus->SimpliSafe Home Security->Ninja Coffee Bar->Samsung SSD 850 Evo->Amazon Echo->Asus RT-AC68U Dual-band Wireless-AC1900 Gigabit Router->Samsung Galaxy S5->Microsoft Surface Book->Samsung Galaxy S4->JBL Flip 3->iPhone 6S Plus->Samsung Galaxy S6->Sennheiser HD 598->Apple MacBook Air (13-inch->HP Stream 11->Nest Cam->Apple iPhone 6 Plus->SAMSUNG GALAXY NOTE 5->Samsung UNJU7100 series->Amazon Echo->Samsung Galaxy Note 4->iPhone 6S Plus->Samsung Gear VR (2015)->Sennheiser HD 598->Yamaha YAS-203->HTC One M9->Nest Learning Thermostat Third Generation->Microsoft Surface Pro 3->Google Nexus 9->Apple TV (2015)->Microsoft Xbox One\t1\t\nSamsung Galaxy Grand Prime->Bose SoundLink Bluetooth Speaker III->Apple TV->Beats Studio Wireless Headphones->SAMSUNG GALAXY NOTE 5->Samsung Galaxy Core Prime->Samsung Gear VR (2015)->HP Spectre x360->Apple iPhone 6->Apple iPhone 6 Plus->Samsung Galaxy S6->Samsung Galaxy S5->JBL Charge 2+->Samsung Galaxy Core Prime->Apple MacBook (12-inch->Nest Learning Thermostat->Nikon D3300->Bose SoundLink Mini II->Apple CarPlay->Bose SoundLink Bluetooth Speaker III->Samsung Gear S2->UE Boom 2->Samsung UNJS8500 series->iPad Air 2->Apple iPhone 6S->Samsung Galaxy S6 Edge->GoPro Hero4 Silver->Samsung Gear S2->iPad Air 2->Ninja Coffee Bar->iPad Air 2->Ninja Coffee Bar->Samsung UNJU7100 series->Asus Chromebit->Sony Alpha 6000 (ILCE-6000)->GoPro Hero4 Silver->TiVo Bolt->Bose SoundLink Bluetooth Speaker III->Apple iPhone 5S\t1\t\nSamsung Galaxy S6 Active->Asus AC2400 RT-AC87U Dual-band Wireless Gigabit Router->HP Stream 11->Jawbone Up2->Samsung Galaxy Tab S2->Sennheiser HD 598->Samsung Galaxy Tab S2->Samsung Galaxy Tab S2->Apple TV->Yamaha YAS-203->Microsoft Xbox One->Dyson v6->Google Nexus 9->Apple iPhone 6->Apple iPhone 6S->SimpliSafe Home Security->Samsung UNJS8500 series->Asus AC2400 RT-AC87U Dual-band Wireless Gigabit Router->TCL S3800 series (Roku TV->JBL Charge 2+->iPad Mini 2->Bose SoundLink Around-Ear Wireless Headphones II->Apple MacBook Air (13-inch->Google Nexus 6P->Motorola Droid Turbo 2->SAMSUNG GALAXY NOTE 5->Microsoft Surface Book->LG G4->Microsoft Surface Book->Motorola Droid Turbo 2->Apple TV (2015)->Apple iPhone 6 Plus->Samsung Galaxy S6->Vizio E series (2015)->Google Nexus 6P->Samsung Galaxy S6 Active->HP Stream 11->Samsung Gear VR (2015)->GoPro Hero3->GoPro Hero3\t1\t\nVizio M series (2015)->Beats Powerbeats2 Wireless->Bose QuietComfort 25->Samsung Gear VR (2015)->Google Nexus 6->LG G Stylo->Samsung Galaxy S5->Apple Watch->Samsung SSD 850 Evo->LG G3->Apple MacBook Air (13-inch->HTC One M9->Amazon Echo->Samsung Galaxy S6 Edge->Google Nexus 6P->Nest Learning Thermostat->Vizio SB4051-C0->Lenovo Yoga 900->Apple MacBook (12-inch->Bose SoundLink Mini II->Apple iPhone 6->HP Stream 11->Sony Alpha 6000 (ILCE-6000)->Audio-Technica ATH-M50x->Microsoft Lumia 950->Apple iPhone 6S->Google Nexus 6->Bose QuietComfort 25->BlackBerry Priv->Bose QuietComfort 25->Samsung Galaxy S6->Samsung Galaxy Core Prime->Google Nexus 6P->Apple MacBook Pro with Retina Display (13-inch->iPad Air 2->Samsung Galaxy S5->Microsoft Surface Pro 3->Ninja Coffee Bar->Samsung Galaxy S6->iPad Air 2->Samsung Galaxy S6 Edge->TiVo Bolt->Apple MacBook (12-inch->HP Stream 11->Sony Alpha 6000 (ILCE-6000)->Samsung SSD 850 Evo->Samsung Galaxy Tab A 8.0\t1\t\niPad Air 2->Samsung UNJS8500 series->Samsung Galaxy S4->Samsung Galaxy S6 Edge->TCL FS4610R (Roku TV)->Apple iPad Mini 4->Sony Xperia Z5 Premium->Samsung Galaxy S6->BlackBerry Priv->Beats Solo 2->Samsung Galaxy Tab A 8.0->Ninja Coffee Bar->Beats Solo 2->Amazon Echo->Yamaha YAS-203->Samsung Galaxy Core Prime->Samsung Galaxy S6 Edge+->Sony Xperia Z5 Premium->Google Nexus 6P->Google Nexus 6->Microsoft Surface Book->Netgear Arlo Smart Home Security->Samsung Galaxy S6->Apple MacBook Air (13-inch->Google Nexus 9->JBL Flip 3->HP Stream 11->Nest Learning Thermostat->Asus RT-AC68U Dual-band Wireless-AC1900 Gigabit Router->iPhone 6S Plus->Sennheiser Momentum 2.0->Google Nexus 6->LG G Stylo->Apple iPhone 6S->HP Stream 11->JBL Flip 3->Samsung Gear VR (2015)->Apple TV->Fitbit Charge HR->Apple iPad Mini 4->Bose SoundLink Around-Ear Wireless Headphones II->Chromecast Audio->Apple MacBook (12-inch->Apple CarPlay->Microsoft Surface Pro 4\t1\t\n","comment":"","msgTable":[[{"key":"path_count","value":"Amazon Echo->Lenovo Yoga 3 14->Bose SoundLink Mini II->Microsoft Lumia 950->iPad Pro->Beats Powerbeats2 Wireless->Asus AC2400 RT-AC87U Dual-band Wireless Gigabit Router->Netgear Arlo Smart Home Security->Nest Learning Thermostat->Roku 3 (2015)->Google Nexus 6->Nest Learning Thermostat Third Generation->Sony Xperia Z5 Premium->Fitbit Charge HR->Bose SoundLink Bluetooth Speaker III->Nikon D3300->Samsung SSD 850 Evo->Samsung UNJS8500 series->Nest Cam->Lenovo Yoga 900->Bose SoundLink Around-Ear Wireless Headphones II->Roku 2 (2015)->Vizio M series (2015)->Apple TV->Lenovo Yoga 900->Sony Alpha 6000 (ILCE-6000)->GoPro Hero3->Apple iPad Mini 4->UE Boom 2->Samsung Galaxy S6 Edge->SimpliSafe Home Security->Vizio E series (2015)->GoPro Hero4 Silver->TCL S3800 series (Roku TV->UE Boom 2->Samsung Galaxy Grand Prime->Sennheiser Momentum 2.0->Apple TV (2015)->Samsung Galaxy Grand Prime->Apple iPhone 6 Plus->Samsung Galaxy S4->Apple CarPlay->Apple MacBook Pro with Retina Display (13-inch->Bose SoundLink Around-Ear Wireless Headphones II->Samsung SSD 850 Evo->Jawbone Up2->iPhone 6S Plus->Apple TV (2015)"},{"key":"path_count","value":"1"},{"key":"path_count","value":""}],[{"value":"Apple MacBook Pro with Retina Display (13-inch->Samsung Galaxy S5->Samsung Galaxy S5->Samsung Galaxy S6 Active->Sennheiser Momentum 2.0->Jawbone Up2->Beats Solo 2->Microsoft Xbox One->Fitbit Charge HR->Google Nexus 6->Vizio M series (2015)->Samsung Galaxy S6 Edge->BlackBerry Priv->Sennheiser HD 598->Google Nexus 5X->Samsung Galaxy S6 Edge+->Vizio SB4051-C0->Google Nexus 9->Samsung Gear S2->Samsung Galaxy Core Prime->Bose SoundLink Bluetooth Speaker III->Vizio E series (2015)->Samsung SSD 850 Evo->LG G4->Sony Xperia Z5 Premium->GoPro Hero4 Silver->SAMSUNG GALAXY NOTE 5->Apple MacBook Pro with Retina Display (13-inch->Jawbone Up2->Samsung Galaxy S5->Bose SoundLink Around-Ear Wireless Headphones II->Vizio SB4051-C0->TiVo Bolt->Samsung Galaxy Note 4->Samsung Galaxy S6 Edge+->TCL S3800 series (Roku TV->Lenovo Yoga 900->Amazon Echo->UE Boom 2->Samsung Galaxy S5"},{"value":"1"},{"value":""}],[{"value":"Asus RT-AC68U Dual-band Wireless-AC1900 Gigabit Router->Samsung Galaxy S6 Edge+->Asus Chromebit->Sony Alpha 6000 (ILCE-6000)->Sennheiser HD 598->Google Nexus 6->Samsung Galaxy Core Prime->Samsung Galaxy Core Prime->Google Nexus 6->Samsung Galaxy S5->GoPro Hero4 Silver->iPad Pro->Google Nexus 6P->Apple Watch->Bose SoundLink Bluetooth Speaker III->JBL Charge 2+->Asus AC2400 RT-AC87U Dual-band Wireless Gigabit Router->Apple Watch->Google Nexus 6->Beats Solo 2->Apple CarPlay->BlackBerry Priv->Samsung Gear VR (2015)->Samsung Galaxy S6 Active->LG G Stylo->Bose QuietComfort 25->TCL S3800 series (Roku TV->Roku 4->HP Spectre x360->Nest Learning Thermostat Third Generation->Samsung Galaxy Core Prime->Apple TV->Sony Alpha 6000 (ILCE-6000)->Bose QuietComfort 25->HP Stream 11->Sony Xperia Z5 Premium->SimpliSafe Home Security->Jawbone Up2->Motorola Droid Turbo 2->Apple iPhone 6S->Audio-Technica ATH-M50x->LG V10 (unlocked)->Samsung Galaxy S5->Bose SoundLink Mini II->Asus AC2400 RT-AC87U Dual-band Wireless Gigabit Router->Samsung Galaxy S6->Apple iPhone 6S->Asus Chromebit->Google Nexus 9->Apple iPad Mini 4"},{"value":"1"},{"value":""}],[{"value":"Beats Powerbeats2 Wireless->LG EF9500 series->Lenovo Yoga 3 14->Bose SoundLink Around-Ear Wireless Headphones II->Vizio M series (2015)->Sennheiser HD 598->TCL FS4610R (Roku TV)->SimpliSafe Home Security->LG V10 (unlocked)->LG V10 (unlocked)->Bose SoundLink Bluetooth Speaker III->Roku 3 (2015)->Apple TV->Bose QuietComfort 25->Sony Xperia Z5->JBL Flip 3->Roku 2 (2015)->Lenovo Yoga 900->Amazon Kindle Paperwhite (2015)->Apple iPhone 5S->HTC One M9->Samsung Galaxy S4->Asus RT-AC68U Dual-band Wireless-AC1900 Gigabit Router->Apple Watch->Asus AC2400 RT-AC87U Dual-band Wireless Gigabit Router->GoPro Hero4 Silver->iPad Air 2->LG EF9500 series->Bose SoundLink Around-Ear Wireless Headphones II->Vizio M series (2015)->iPad Mini 2->HTC One M9->Apple iPhone 6S->Beats Solo 2->Apple MacBook (12-inch->Nikon D3300->TCL S3800 series (Roku TV->Samsung Galaxy S6 Edge->LG G Stylo->HTC One M9->Microsoft Surface Pro 3->Apple iPhone 6->Samsung Galaxy S4->iPad Pro->Apple iPhone 6S->Lenovo Yoga 900->Apple TV (2015)->JBL Charge 2+->Microsoft Xbox One->Chromecast Audio"},{"value":"1"},{"value":""}],[{"value":"Beats Solo 2->Chromecast Audio->Microsoft Surface Pro 3->Bose SoundLink Around-Ear Wireless Headphones II->Samsung Gear S2->Samsung Galaxy Core Prime->Sennheiser Momentum 2.0->Roku 2 (2015)->Chromecast Audio->Google Nexus 6P->Samsung Galaxy S5->Samsung UNJS8500 series->LG G3->Apple Watch->Ninja Coffee Bar->Google Nexus 6P->Samsung Galaxy Tab A 8.0->Apple MacBook Pro with Retina Display (13-inch->Samsung Galaxy S5->Apple CarPlay->Apple iPhone 5->Apple iPhone 5->Vizio M series (2015)->Beats Solo 2->HP Spectre x360->iPad Air 2->iPad Pro->Amazon Echo->Bose SoundLink Bluetooth Speaker III->Sennheiser HD 598->Amazon Echo->Samsung Galaxy S6->Apple iPhone 6S->Apple TV->JBL Charge 2+->Fitbit Charge HR->LG V10 (unlocked)->iPad Pro->Roku 4->LG EF9500 series->Vizio E series (2015)->Apple iPhone 6->Motorola Droid Turbo 2->LG G Stylo->Sony Xperia Z5->Sony Alpha 6000 (ILCE-6000)->Microsoft Surface Pro 3->Samsung Galaxy Tab A 8.0->Apple CarPlay"},{"value":"1"},{"value":""}],[{"value":"BlackBerry Priv->SAMSUNG GALAXY NOTE 5->HP Spectre x360->iPad Mini 2->Samsung Gear S2->Amazon Kindle Paperwhite (2015)->Vizio SB4051-C0->Apple MacBook Pro with Retina Display (13-inch->Roku 3 (2015)->Nest Learning Thermostat Third Generation->Samsung Galaxy S6 Active->iPad Air 2->Apple TV (2015)->BlackBerry Priv->Beats Studio Wireless Headphones->Samsung UNJU7100 series->LG EF9500 series->Lenovo Yoga 3 14->Bose SoundLink Bluetooth Speaker III->Samsung Galaxy S5->Apple MacBook Pro with Retina Display (13-inch->Samsung UNJS8500 series->iPad Air 2->Fitbit Charge HR->Beats Powerbeats2 Wireless->Vizio SB4051-C0->Beats Studio Wireless Headphones->Beats Solo 2->Apple Watch->iPad Mini 2->Bose QuietComfort 25->TCL FS4610R (Roku TV)->Roku 2 (2015)->SAMSUNG GALAXY NOTE 5->Apple TV->Bose SoundLink Bluetooth Speaker III->iPad Pro->Asus Chromebit->Samsung Galaxy Grand Prime->Nest Learning Thermostat->Fitbit Charge HR->TiVo Bolt->Google Nexus 5X->Beats Studio Wireless Headphones->Lenovo Yoga 3 14->Sennheiser Momentum 2.0->Google Nexus 6P"},{"value":"1"},{"value":""}],[{"value":"Bose SoundLink Bluetooth Speaker III->Google Nexus 9->Apple iPhone 5S->Sony Alpha 6000 (ILCE-6000)->GoPro Hero4 Silver->LG G3->Sony Alpha 6000 (ILCE-6000)->Samsung Galaxy S4->Bose SoundLink Mini II->HTC One M9->Audio-Technica ATH-M50x->Bose SoundLink Mini II->Amazon Echo->Roku 2 (2015)->iPad Mini 2->HP Stream 11->Apple TV (2015)->Samsung UNJS8500 series->Apple iPhone 6 Plus->Apple iPhone 5->Microsoft Lumia 950->Microsoft Surface Book->Apple TV->Amazon Kindle Paperwhite (2015)->Netgear Arlo Smart Home Security->Microsoft Surface Pro 3->Vizio E series (2015)->Apple MacBook Air (13-inch->Nest Learning Thermostat->Google Nexus 5X->Ninja Coffee Bar->Bose SoundLink Around-Ear Wireless Headphones II->LG G Stylo->Samsung Galaxy S6 Edge+->iPhone 6S Plus->Bose QuietComfort 25->Apple MacBook Air (13-inch->Lenovo Yoga 3 14"},{"value":"1"},{"value":""}],[{"value":"Bose SoundLink Bluetooth Speaker III->JBL Flip 3->Google Nexus 6P->Apple CarPlay->Google Nexus 9->Apple TV->Roku 2 (2015)->Beats Solo 2->Jawbone Up2->Samsung Galaxy S6->Samsung Galaxy S6 Edge->Amazon Kindle Paperwhite (2015)->Apple CarPlay->TCL FS4610R (Roku TV)->HP Stream 11->Samsung Galaxy Note 4->Samsung Galaxy S6 Edge+->Apple MacBook Pro with Retina Display (13-inch->Vizio M series (2015)->LG G Stylo->Microsoft Xbox One->Microsoft Xbox One->Vizio E series (2015)->Microsoft Surface Pro 3->Roku 3 (2015)->Samsung Galaxy S4->Audio-Technica ATH-M50x->Microsoft Surface Pro 4->Samsung UNJS8500 series->Nest Cam->Asus AC2400 RT-AC87U Dual-band Wireless Gigabit Router->Apple TV (2015)->Ninja Coffee Bar->Jawbone Up2"},{"value":"1"},{"value":""}],[{"value":"Dyson v6->Microsoft Surface Pro 4->iPad Air 2->LG G4->Samsung Galaxy Tab S2->Samsung SSD 850 Evo->JBL Charge 2+->Apple iPhone 5S->Lenovo Yoga 900->Ninja Coffee Bar->TCL S3800 series (Roku TV->Asus AC2400 RT-AC87U Dual-band Wireless Gigabit Router->Beats Powerbeats2 Wireless->BlackBerry Priv->Samsung Galaxy Core Prime->Vizio M series (2015)->Samsung Galaxy S6 Edge->Vizio E series (2015)->Roku 4->Apple iPhone 6 Plus->Apple iPad Mini 4->HTC One M9->Roku 4->Apple iPhone 6S->Lenovo Yoga 3 14->Apple iPhone 6 Plus->GoPro Hero3->Samsung Galaxy Grand Prime->LG G Stylo->Roku 2 (2015)->JBL Charge 2+->Beats Studio Wireless Headphones->TCL S3800 series (Roku TV->Ninja Coffee Bar->HTC One M9->Vizio SB4051-C0->Bose SoundLink Mini II->Microsoft Surface Book->BlackBerry Priv->Sony Alpha 6000 (ILCE-6000)->Samsung UNJS8500 series->Sennheiser Momentum 2.0"},{"value":"1"},{"value":""}],[{"value":"GoPro Hero4 Silver->Apple iPhone 5->Vizio M series (2015)->Jawbone Up2->Asus Chromebit->Google Nexus 6->JBL Charge 2+->Sennheiser Momentum 2.0->Samsung SSD 850 Evo->TCL FS4610R (Roku TV)->Apple TV->Google Nexus 5X->Chromecast Audio->TCL FS4610R (Roku TV)->Jawbone Up2->Vizio E series (2015)->Bose SoundLink Around-Ear Wireless Headphones II->Apple TV (2015)->Roku 2 (2015)->Bose SoundLink Mini II->Samsung UNJS8500 series->Jawbone Up2->Lenovo Yoga 900->GoPro Hero3->Microsoft Surface Pro 3->HP Spectre x360->HP Stream 11->Amazon Kindle Paperwhite (2015)->Apple TV (2015)->Samsung Galaxy Tab A 8.0->Apple CarPlay->TiVo Bolt->GoPro Hero4 Silver->Google Nexus 6->Nikon D3300->Google Nexus 6->Google Nexus 9->JBL Flip 3->SimpliSafe Home Security->Apple iPhone 6S->SAMSUNG GALAXY NOTE 5->Ninja Coffee Bar"},{"value":"1"},{"value":""}],[{"value":"Google Nexus 6P->Apple Watch->LG G3->HP Spectre x360->Samsung UNJS8500 series->Vizio E series (2015)->Beats Solo 2->LG G3->Audio-Technica ATH-M50x->Ninja Coffee Bar->Apple iPhone 5S->Samsung Gear VR (2015)->JBL Charge 2+->Samsung SSD 850 Evo->Apple iPhone 5->Asus RT-AC68U Dual-band Wireless-AC1900 Gigabit Router->HP Spectre x360->Vizio E series (2015)->Lenovo Yoga 3 14->Google Nexus 6->Google Nexus 6P->Samsung UNJS8500 series->Amazon Echo->Audio-Technica ATH-M50x->Samsung Galaxy S5->Microsoft Surface Book->LG V10 (unlocked)->Vizio M series (2015)->Samsung SSD 850 Evo->Samsung Galaxy Tab A 8.0->LG G Stylo->Nest Cam->Apple Watch->Apple iPhone 6 Plus->Asus AC2400 RT-AC87U Dual-band Wireless Gigabit Router->Google Nexus 9->BlackBerry Priv->Google Nexus 5X->Nest Learning Thermostat Third Generation"},{"value":"1"},{"value":""}],[{"value":"Google Nexus 6P->Nikon D3300->LG G3->Vizio SB4051-C0->Microsoft Surface Pro 3->Samsung UNJS8500 series->Microsoft Surface Pro 3->Bose SoundLink Bluetooth Speaker III->Sony Xperia Z5 Premium->Sony Alpha 6000 (ILCE-6000)->Bose SoundLink Mini II->Apple TV->Microsoft Surface Pro 4->HP Spectre x360->Vizio E series (2015)->LG G4->HP Spectre x360->LG G3->JBL Charge 2+->Sennheiser Momentum 2.0->Samsung Galaxy Note 4->TiVo Bolt->Nest Cam->SimpliSafe Home Security->LG V10 (unlocked)->Samsung Galaxy Grand Prime->Google Nexus 6P->Dyson v6->Apple iPhone 6 Plus->Asus AC2400 RT-AC87U Dual-band Wireless Gigabit Router"},{"value":"1"},{"value":""}],[{"value":"HTC One M9->Roku 3 (2015)->iPad Pro->Beats Powerbeats2 Wireless->SimpliSafe Home Security->Sony Alpha 6000 (ILCE-6000)->TCL S3800 series (Roku TV->Google Nexus 6P->Bose SoundLink Bluetooth Speaker III->Apple iPad Mini 4->Fitbit Charge HR->Apple iPhone 5S->Apple TV (2015)->Samsung Galaxy S6 Edge+->Apple iPhone 6 Plus->Jawbone Up2->iPad Pro->Sony Xperia Z5->Samsung Galaxy S6->HTC One M9->Microsoft Surface Book->Apple MacBook (12-inch->Sennheiser Momentum 2.0->Asus RT-AC68U Dual-band Wireless-AC1900 Gigabit Router->Roku 4->Apple Watch->TCL S3800 series (Roku TV->Amazon Echo->Google Nexus 9->Apple iPhone 6 Plus->Apple TV (2015)->Lenovo Yoga 900->Apple MacBook Pro with Retina Display (13-inch"},{"value":"1"},{"value":""}],[{"value":"LG G3->Beats Studio Wireless Headphones->Audio-Technica ATH-M50x->iPad Air 2->Lenovo Yoga 3 14->Apple MacBook Air (13-inch->Beats Solo 2->Nikon D3300->SAMSUNG GALAXY NOTE 5->Google Nexus 6->Samsung Galaxy Tab A 8.0->Beats Powerbeats2 Wireless->HP Stream 11->Bose SoundLink Bluetooth Speaker III->iPad Air 2->Sony Xperia Z5 Premium->Vizio E series (2015)->Apple iPhone 5S->Jawbone Up2->Roku 2 (2015)->Apple CarPlay->Microsoft Surface Pro 3->Vizio SB4051-C0->Bose SoundLink Mini II->GoPro Hero3->Samsung Galaxy Note 4->Microsoft Surface Book->Google Nexus 5X->Amazon Kindle Paperwhite (2015)->Apple iPhone 6->Apple TV (2015)->Microsoft Surface Pro 4->Google Nexus 6P->Netgear Arlo Smart Home Security->Sony Xperia Z5->Samsung Gear S2->Samsung Gear VR (2015)->Roku 3 (2015)->GoPro Hero3->Microsoft Surface Pro 3->iPad Air 2->SimpliSafe Home Security->Apple MacBook Pro with Retina Display (13-inch->Yamaha YAS-203->iPad Mini 2"},{"value":"1"},{"value":""}],[{"value":"Microsoft Surface Pro 4->Nikon D3300->Beats Powerbeats2 Wireless->Apple iPhone 5S->SimpliSafe Home Security->Bose SoundLink Bluetooth Speaker III->Microsoft Xbox One->Apple iPhone 6S->Lenovo Yoga 3 14->Amazon Kindle Paperwhite (2015)->JBL Flip 3->LG V10 (unlocked)->Yamaha YAS-203->UE Boom 2->LG G4->Fitbit Charge HR->Microsoft Surface Book->Jawbone Up2->Asus AC2400 RT-AC87U Dual-band Wireless Gigabit Router->iPhone 6S Plus->iPad Pro->Nest Learning Thermostat Third Generation->iPhone 6S Plus->Dyson v6->Asus RT-AC68U Dual-band Wireless-AC1900 Gigabit Router->Asus RT-AC68U Dual-band Wireless-AC1900 Gigabit Router->Microsoft Lumia 950->Asus Chromebit->Apple Watch->Sony Alpha 6000 (ILCE-6000)->Vizio SB4051-C0->JBL Charge 2+->Samsung SSD 850 Evo->Apple MacBook Air (13-inch->Samsung Gear S2->Samsung Galaxy S4->iPad Mini 2->Apple MacBook (12-inch->Amazon Kindle Paperwhite (2015)->Fitbit Charge HR->LG G4->GoPro Hero4 Silver->Apple Watch->BlackBerry Priv"},{"value":"1"},{"value":""}],[{"value":"Nest Learning Thermostat->Samsung Galaxy Note 4->Apple MacBook Pro with Retina Display (13-inch->Samsung Galaxy Core Prime->Jawbone Up2->Samsung Galaxy S6 Edge+->Vizio M series (2015)->Samsung UNJU7100 series->TiVo Bolt->Apple TV->Google Nexus 9->LG V10 (unlocked)->Sony Alpha 6000 (ILCE-6000)->Lenovo Yoga 3 14->Sennheiser Momentum 2.0->LG G Stylo->HTC One M9->iPhone 6S Plus->SimpliSafe Home Security->Ninja Coffee Bar->Samsung SSD 850 Evo->Amazon Echo->Asus RT-AC68U Dual-band Wireless-AC1900 Gigabit Router->Samsung Galaxy S5->Microsoft Surface Book->Samsung Galaxy S4->JBL Flip 3->iPhone 6S Plus->Samsung Galaxy S6->Sennheiser HD 598->Apple MacBook Air (13-inch->HP Stream 11->Nest Cam->Apple iPhone 6 Plus->SAMSUNG GALAXY NOTE 5->Samsung UNJU7100 series->Amazon Echo->Samsung Galaxy Note 4->iPhone 6S Plus->Samsung Gear VR (2015)->Sennheiser HD 598->Yamaha YAS-203->HTC One M9->Nest Learning Thermostat Third Generation->Microsoft Surface Pro 3->Google Nexus 9->Apple TV (2015)->Microsoft Xbox One"},{"value":"1"},{"value":""}],[{"value":"Samsung Galaxy Grand Prime->Bose SoundLink Bluetooth Speaker III->Apple TV->Beats Studio Wireless Headphones->SAMSUNG GALAXY NOTE 5->Samsung Galaxy Core Prime->Samsung Gear VR (2015)->HP Spectre x360->Apple iPhone 6->Apple iPhone 6 Plus->Samsung Galaxy S6->Samsung Galaxy S5->JBL Charge 2+->Samsung Galaxy Core Prime->Apple MacBook (12-inch->Nest Learning Thermostat->Nikon D3300->Bose SoundLink Mini II->Apple CarPlay->Bose SoundLink Bluetooth Speaker III->Samsung Gear S2->UE Boom 2->Samsung UNJS8500 series->iPad Air 2->Apple iPhone 6S->Samsung Galaxy S6 Edge->GoPro Hero4 Silver->Samsung Gear S2->iPad Air 2->Ninja Coffee Bar->iPad Air 2->Ninja Coffee Bar->Samsung UNJU7100 series->Asus Chromebit->Sony Alpha 6000 (ILCE-6000)->GoPro Hero4 Silver->TiVo Bolt->Bose SoundLink Bluetooth Speaker III->Apple iPhone 5S"},{"value":"1"},{"value":""}],[{"value":"Samsung Galaxy S6 Active->Asus AC2400 RT-AC87U Dual-band Wireless Gigabit Router->HP Stream 11->Jawbone Up2->Samsung Galaxy Tab S2->Sennheiser HD 598->Samsung Galaxy Tab S2->Samsung Galaxy Tab S2->Apple TV->Yamaha YAS-203->Microsoft Xbox One->Dyson v6->Google Nexus 9->Apple iPhone 6->Apple iPhone 6S->SimpliSafe Home Security->Samsung UNJS8500 series->Asus AC2400 RT-AC87U Dual-band Wireless Gigabit Router->TCL S3800 series (Roku TV->JBL Charge 2+->iPad Mini 2->Bose SoundLink Around-Ear Wireless Headphones II->Apple MacBook Air (13-inch->Google Nexus 6P->Motorola Droid Turbo 2->SAMSUNG GALAXY NOTE 5->Microsoft Surface Book->LG G4->Microsoft Surface Book->Motorola Droid Turbo 2->Apple TV (2015)->Apple iPhone 6 Plus->Samsung Galaxy S6->Vizio E series (2015)->Google Nexus 6P->Samsung Galaxy S6 Active->HP Stream 11->Samsung Gear VR (2015)->GoPro Hero3->GoPro Hero3"},{"value":"1"},{"value":""}],[{"value":"Vizio M series (2015)->Beats Powerbeats2 Wireless->Bose QuietComfort 25->Samsung Gear VR (2015)->Google Nexus 6->LG G Stylo->Samsung Galaxy S5->Apple Watch->Samsung SSD 850 Evo->LG G3->Apple MacBook Air (13-inch->HTC One M9->Amazon Echo->Samsung Galaxy S6 Edge->Google Nexus 6P->Nest Learning Thermostat->Vizio SB4051-C0->Lenovo Yoga 900->Apple MacBook (12-inch->Bose SoundLink Mini II->Apple iPhone 6->HP Stream 11->Sony Alpha 6000 (ILCE-6000)->Audio-Technica ATH-M50x->Microsoft Lumia 950->Apple iPhone 6S->Google Nexus 6->Bose QuietComfort 25->BlackBerry Priv->Bose QuietComfort 25->Samsung Galaxy S6->Samsung Galaxy Core Prime->Google Nexus 6P->Apple MacBook Pro with Retina Display (13-inch->iPad Air 2->Samsung Galaxy S5->Microsoft Surface Pro 3->Ninja Coffee Bar->Samsung Galaxy S6->iPad Air 2->Samsung Galaxy S6 Edge->TiVo Bolt->Apple MacBook (12-inch->HP Stream 11->Sony Alpha 6000 (ILCE-6000)->Samsung SSD 850 Evo->Samsung Galaxy Tab A 8.0"},{"value":"1"},{"value":""}],[{"value":"iPad Air 2->Samsung UNJS8500 series->Samsung Galaxy S4->Samsung Galaxy S6 Edge->TCL FS4610R (Roku TV)->Apple iPad Mini 4->Sony Xperia Z5 Premium->Samsung Galaxy S6->BlackBerry Priv->Beats Solo 2->Samsung Galaxy Tab A 8.0->Ninja Coffee Bar->Beats Solo 2->Amazon Echo->Yamaha YAS-203->Samsung Galaxy Core Prime->Samsung Galaxy S6 Edge+->Sony Xperia Z5 Premium->Google Nexus 6P->Google Nexus 6->Microsoft Surface Book->Netgear Arlo Smart Home Security->Samsung Galaxy S6->Apple MacBook Air (13-inch->Google Nexus 9->JBL Flip 3->HP Stream 11->Nest Learning Thermostat->Asus RT-AC68U Dual-band Wireless-AC1900 Gigabit Router->iPhone 6S Plus->Sennheiser Momentum 2.0->Google Nexus 6->LG G Stylo->Apple iPhone 6S->HP Stream 11->JBL Flip 3->Samsung Gear VR (2015)->Apple TV->Fitbit Charge HR->Apple iPad Mini 4->Bose SoundLink Around-Ear Wireless Headphones II->Chromecast Audio->Apple MacBook (12-inch->Apple CarPlay->Microsoft Surface Pro 4"},{"value":"1"},{"value":""}]],"columnNames":[{"name":"web_path","index":0,"aggr":"sum"},{"name":"path_count","index":1,"aggr":"sum"}],"rows":[["Amazon Echo->Lenovo Yoga 3 14->Bose SoundLink Mini II->Microsoft Lumia 950->iPad Pro->Beats Powerbeats2 Wireless->Asus AC2400 RT-AC87U Dual-band Wireless Gigabit Router->Netgear Arlo Smart Home Security->Nest Learning Thermostat->Roku 3 (2015)->Google Nexus 6->Nest Learning Thermostat Third Generation->Sony Xperia Z5 Premium->Fitbit Charge HR->Bose SoundLink Bluetooth Speaker III->Nikon D3300->Samsung SSD 850 Evo->Samsung UNJS8500 series->Nest Cam->Lenovo Yoga 900->Bose SoundLink Around-Ear Wireless Headphones II->Roku 2 (2015)->Vizio M series (2015)->Apple TV->Lenovo Yoga 900->Sony Alpha 6000 (ILCE-6000)->GoPro Hero3->Apple iPad Mini 4->UE Boom 2->Samsung Galaxy S6 Edge->SimpliSafe Home Security->Vizio E series (2015)->GoPro Hero4 Silver->TCL S3800 series (Roku TV->UE Boom 2->Samsung Galaxy Grand Prime->Sennheiser Momentum 2.0->Apple TV (2015)->Samsung Galaxy Grand Prime->Apple iPhone 6 Plus->Samsung Galaxy S4->Apple CarPlay->Apple MacBook Pro with Retina Display (13-inch->Bose SoundLink Around-Ear Wireless Headphones II->Samsung SSD 850 Evo->Jawbone Up2->iPhone 6S Plus->Apple TV (2015)","1",""],["Apple MacBook Pro with Retina Display (13-inch->Samsung Galaxy S5->Samsung Galaxy S5->Samsung Galaxy S6 Active->Sennheiser Momentum 2.0->Jawbone Up2->Beats Solo 2->Microsoft Xbox One->Fitbit Charge HR->Google Nexus 6->Vizio M series (2015)->Samsung Galaxy S6 Edge->BlackBerry Priv->Sennheiser HD 598->Google Nexus 5X->Samsung Galaxy S6 Edge+->Vizio SB4051-C0->Google Nexus 9->Samsung Gear S2->Samsung Galaxy Core Prime->Bose SoundLink Bluetooth Speaker III->Vizio E series (2015)->Samsung SSD 850 Evo->LG G4->Sony Xperia Z5 Premium->GoPro Hero4 Silver->SAMSUNG GALAXY NOTE 5->Apple MacBook Pro with Retina Display (13-inch->Jawbone Up2->Samsung Galaxy S5->Bose SoundLink Around-Ear Wireless Headphones II->Vizio SB4051-C0->TiVo Bolt->Samsung Galaxy Note 4->Samsung Galaxy S6 Edge+->TCL S3800 series (Roku TV->Lenovo Yoga 900->Amazon Echo->UE Boom 2->Samsung Galaxy S5","1",""],["Asus RT-AC68U Dual-band Wireless-AC1900 Gigabit Router->Samsung Galaxy S6 Edge+->Asus Chromebit->Sony Alpha 6000 (ILCE-6000)->Sennheiser HD 598->Google Nexus 6->Samsung Galaxy Core Prime->Samsung Galaxy Core Prime->Google Nexus 6->Samsung Galaxy S5->GoPro Hero4 Silver->iPad Pro->Google Nexus 6P->Apple Watch->Bose SoundLink Bluetooth Speaker III->JBL Charge 2+->Asus AC2400 RT-AC87U Dual-band Wireless Gigabit Router->Apple Watch->Google Nexus 6->Beats Solo 2->Apple CarPlay->BlackBerry Priv->Samsung Gear VR (2015)->Samsung Galaxy S6 Active->LG G Stylo->Bose QuietComfort 25->TCL S3800 series (Roku TV->Roku 4->HP Spectre x360->Nest Learning Thermostat Third Generation->Samsung Galaxy Core Prime->Apple TV->Sony Alpha 6000 (ILCE-6000)->Bose QuietComfort 25->HP Stream 11->Sony Xperia Z5 Premium->SimpliSafe Home Security->Jawbone Up2->Motorola Droid Turbo 2->Apple iPhone 6S->Audio-Technica ATH-M50x->LG V10 (unlocked)->Samsung Galaxy S5->Bose SoundLink Mini II->Asus AC2400 RT-AC87U Dual-band Wireless Gigabit Router->Samsung Galaxy S6->Apple iPhone 6S->Asus Chromebit->Google Nexus 9->Apple iPad Mini 4","1",""],["Beats Powerbeats2 Wireless->LG EF9500 series->Lenovo Yoga 3 14->Bose SoundLink Around-Ear Wireless Headphones II->Vizio M series (2015)->Sennheiser HD 598->TCL FS4610R (Roku TV)->SimpliSafe Home Security->LG V10 (unlocked)->LG V10 (unlocked)->Bose SoundLink Bluetooth Speaker III->Roku 3 (2015)->Apple TV->Bose QuietComfort 25->Sony Xperia Z5->JBL Flip 3->Roku 2 (2015)->Lenovo Yoga 900->Amazon Kindle Paperwhite (2015)->Apple iPhone 5S->HTC One M9->Samsung Galaxy S4->Asus RT-AC68U Dual-band Wireless-AC1900 Gigabit Router->Apple Watch->Asus AC2400 RT-AC87U Dual-band Wireless Gigabit Router->GoPro Hero4 Silver->iPad Air 2->LG EF9500 series->Bose SoundLink Around-Ear Wireless Headphones II->Vizio M series (2015)->iPad Mini 2->HTC One M9->Apple iPhone 6S->Beats Solo 2->Apple MacBook (12-inch->Nikon D3300->TCL S3800 series (Roku TV->Samsung Galaxy S6 Edge->LG G Stylo->HTC One M9->Microsoft Surface Pro 3->Apple iPhone 6->Samsung Galaxy S4->iPad Pro->Apple iPhone 6S->Lenovo Yoga 900->Apple TV (2015)->JBL Charge 2+->Microsoft Xbox One->Chromecast Audio","1",""],["Beats Solo 2->Chromecast Audio->Microsoft Surface Pro 3->Bose SoundLink Around-Ear Wireless Headphones II->Samsung Gear S2->Samsung Galaxy Core Prime->Sennheiser Momentum 2.0->Roku 2 (2015)->Chromecast Audio->Google Nexus 6P->Samsung Galaxy S5->Samsung UNJS8500 series->LG G3->Apple Watch->Ninja Coffee Bar->Google Nexus 6P->Samsung Galaxy Tab A 8.0->Apple MacBook Pro with Retina Display (13-inch->Samsung Galaxy S5->Apple CarPlay->Apple iPhone 5->Apple iPhone 5->Vizio M series (2015)->Beats Solo 2->HP Spectre x360->iPad Air 2->iPad Pro->Amazon Echo->Bose SoundLink Bluetooth Speaker III->Sennheiser HD 598->Amazon Echo->Samsung Galaxy S6->Apple iPhone 6S->Apple TV->JBL Charge 2+->Fitbit Charge HR->LG V10 (unlocked)->iPad Pro->Roku 4->LG EF9500 series->Vizio E series (2015)->Apple iPhone 6->Motorola Droid Turbo 2->LG G Stylo->Sony Xperia Z5->Sony Alpha 6000 (ILCE-6000)->Microsoft Surface Pro 3->Samsung Galaxy Tab A 8.0->Apple CarPlay","1",""],["BlackBerry Priv->SAMSUNG GALAXY NOTE 5->HP Spectre x360->iPad Mini 2->Samsung Gear S2->Amazon Kindle Paperwhite (2015)->Vizio SB4051-C0->Apple MacBook Pro with Retina Display (13-inch->Roku 3 (2015)->Nest Learning Thermostat Third Generation->Samsung Galaxy S6 Active->iPad Air 2->Apple TV (2015)->BlackBerry Priv->Beats Studio Wireless Headphones->Samsung UNJU7100 series->LG EF9500 series->Lenovo Yoga 3 14->Bose SoundLink Bluetooth Speaker III->Samsung Galaxy S5->Apple MacBook Pro with Retina Display (13-inch->Samsung UNJS8500 series->iPad Air 2->Fitbit Charge HR->Beats Powerbeats2 Wireless->Vizio SB4051-C0->Beats Studio Wireless Headphones->Beats Solo 2->Apple Watch->iPad Mini 2->Bose QuietComfort 25->TCL FS4610R (Roku TV)->Roku 2 (2015)->SAMSUNG GALAXY NOTE 5->Apple TV->Bose SoundLink Bluetooth Speaker III->iPad Pro->Asus Chromebit->Samsung Galaxy Grand Prime->Nest Learning Thermostat->Fitbit Charge HR->TiVo Bolt->Google Nexus 5X->Beats Studio Wireless Headphones->Lenovo Yoga 3 14->Sennheiser Momentum 2.0->Google Nexus 6P","1",""],["Bose SoundLink Bluetooth Speaker III->Google Nexus 9->Apple iPhone 5S->Sony Alpha 6000 (ILCE-6000)->GoPro Hero4 Silver->LG G3->Sony Alpha 6000 (ILCE-6000)->Samsung Galaxy S4->Bose SoundLink Mini II->HTC One M9->Audio-Technica ATH-M50x->Bose SoundLink Mini II->Amazon Echo->Roku 2 (2015)->iPad Mini 2->HP Stream 11->Apple TV (2015)->Samsung UNJS8500 series->Apple iPhone 6 Plus->Apple iPhone 5->Microsoft Lumia 950->Microsoft Surface Book->Apple TV->Amazon Kindle Paperwhite (2015)->Netgear Arlo Smart Home Security->Microsoft Surface Pro 3->Vizio E series (2015)->Apple MacBook Air (13-inch->Nest Learning Thermostat->Google Nexus 5X->Ninja Coffee Bar->Bose SoundLink Around-Ear Wireless Headphones II->LG G Stylo->Samsung Galaxy S6 Edge+->iPhone 6S Plus->Bose QuietComfort 25->Apple MacBook Air (13-inch->Lenovo Yoga 3 14","1",""],["Bose SoundLink Bluetooth Speaker III->JBL Flip 3->Google Nexus 6P->Apple CarPlay->Google Nexus 9->Apple TV->Roku 2 (2015)->Beats Solo 2->Jawbone Up2->Samsung Galaxy S6->Samsung Galaxy S6 Edge->Amazon Kindle Paperwhite (2015)->Apple CarPlay->TCL FS4610R (Roku TV)->HP Stream 11->Samsung Galaxy Note 4->Samsung Galaxy S6 Edge+->Apple MacBook Pro with Retina Display (13-inch->Vizio M series (2015)->LG G Stylo->Microsoft Xbox One->Microsoft Xbox One->Vizio E series (2015)->Microsoft Surface Pro 3->Roku 3 (2015)->Samsung Galaxy S4->Audio-Technica ATH-M50x->Microsoft Surface Pro 4->Samsung UNJS8500 series->Nest Cam->Asus AC2400 RT-AC87U Dual-band Wireless Gigabit Router->Apple TV (2015)->Ninja Coffee Bar->Jawbone Up2","1",""],["Dyson v6->Microsoft Surface Pro 4->iPad Air 2->LG G4->Samsung Galaxy Tab S2->Samsung SSD 850 Evo->JBL Charge 2+->Apple iPhone 5S->Lenovo Yoga 900->Ninja Coffee Bar->TCL S3800 series (Roku TV->Asus AC2400 RT-AC87U Dual-band Wireless Gigabit Router->Beats Powerbeats2 Wireless->BlackBerry Priv->Samsung Galaxy Core Prime->Vizio M series (2015)->Samsung Galaxy S6 Edge->Vizio E series (2015)->Roku 4->Apple iPhone 6 Plus->Apple iPad Mini 4->HTC One M9->Roku 4->Apple iPhone 6S->Lenovo Yoga 3 14->Apple iPhone 6 Plus->GoPro Hero3->Samsung Galaxy Grand Prime->LG G Stylo->Roku 2 (2015)->JBL Charge 2+->Beats Studio Wireless Headphones->TCL S3800 series (Roku TV->Ninja Coffee Bar->HTC One M9->Vizio SB4051-C0->Bose SoundLink Mini II->Microsoft Surface Book->BlackBerry Priv->Sony Alpha 6000 (ILCE-6000)->Samsung UNJS8500 series->Sennheiser Momentum 2.0","1",""],["GoPro Hero4 Silver->Apple iPhone 5->Vizio M series (2015)->Jawbone Up2->Asus Chromebit->Google Nexus 6->JBL Charge 2+->Sennheiser Momentum 2.0->Samsung SSD 850 Evo->TCL FS4610R (Roku TV)->Apple TV->Google Nexus 5X->Chromecast Audio->TCL FS4610R (Roku TV)->Jawbone Up2->Vizio E series (2015)->Bose SoundLink Around-Ear Wireless Headphones II->Apple TV (2015)->Roku 2 (2015)->Bose SoundLink Mini II->Samsung UNJS8500 series->Jawbone Up2->Lenovo Yoga 900->GoPro Hero3->Microsoft Surface Pro 3->HP Spectre x360->HP Stream 11->Amazon Kindle Paperwhite (2015)->Apple TV (2015)->Samsung Galaxy Tab A 8.0->Apple CarPlay->TiVo Bolt->GoPro Hero4 Silver->Google Nexus 6->Nikon D3300->Google Nexus 6->Google Nexus 9->JBL Flip 3->SimpliSafe Home Security->Apple iPhone 6S->SAMSUNG GALAXY NOTE 5->Ninja Coffee Bar","1",""],["Google Nexus 6P->Apple Watch->LG G3->HP Spectre x360->Samsung UNJS8500 series->Vizio E series (2015)->Beats Solo 2->LG G3->Audio-Technica ATH-M50x->Ninja Coffee Bar->Apple iPhone 5S->Samsung Gear VR (2015)->JBL Charge 2+->Samsung SSD 850 Evo->Apple iPhone 5->Asus RT-AC68U Dual-band Wireless-AC1900 Gigabit Router->HP Spectre x360->Vizio E series (2015)->Lenovo Yoga 3 14->Google Nexus 6->Google Nexus 6P->Samsung UNJS8500 series->Amazon Echo->Audio-Technica ATH-M50x->Samsung Galaxy S5->Microsoft Surface Book->LG V10 (unlocked)->Vizio M series (2015)->Samsung SSD 850 Evo->Samsung Galaxy Tab A 8.0->LG G Stylo->Nest Cam->Apple Watch->Apple iPhone 6 Plus->Asus AC2400 RT-AC87U Dual-band Wireless Gigabit Router->Google Nexus 9->BlackBerry Priv->Google Nexus 5X->Nest Learning Thermostat Third Generation","1",""],["Google Nexus 6P->Nikon D3300->LG G3->Vizio SB4051-C0->Microsoft Surface Pro 3->Samsung UNJS8500 series->Microsoft Surface Pro 3->Bose SoundLink Bluetooth Speaker III->Sony Xperia Z5 Premium->Sony Alpha 6000 (ILCE-6000)->Bose SoundLink Mini II->Apple TV->Microsoft Surface Pro 4->HP Spectre x360->Vizio E series (2015)->LG G4->HP Spectre x360->LG G3->JBL Charge 2+->Sennheiser Momentum 2.0->Samsung Galaxy Note 4->TiVo Bolt->Nest Cam->SimpliSafe Home Security->LG V10 (unlocked)->Samsung Galaxy Grand Prime->Google Nexus 6P->Dyson v6->Apple iPhone 6 Plus->Asus AC2400 RT-AC87U Dual-band Wireless Gigabit Router","1",""],["HTC One M9->Roku 3 (2015)->iPad Pro->Beats Powerbeats2 Wireless->SimpliSafe Home Security->Sony Alpha 6000 (ILCE-6000)->TCL S3800 series (Roku TV->Google Nexus 6P->Bose SoundLink Bluetooth Speaker III->Apple iPad Mini 4->Fitbit Charge HR->Apple iPhone 5S->Apple TV (2015)->Samsung Galaxy S6 Edge+->Apple iPhone 6 Plus->Jawbone Up2->iPad Pro->Sony Xperia Z5->Samsung Galaxy S6->HTC One M9->Microsoft Surface Book->Apple MacBook (12-inch->Sennheiser Momentum 2.0->Asus RT-AC68U Dual-band Wireless-AC1900 Gigabit Router->Roku 4->Apple Watch->TCL S3800 series (Roku TV->Amazon Echo->Google Nexus 9->Apple iPhone 6 Plus->Apple TV (2015)->Lenovo Yoga 900->Apple MacBook Pro with Retina Display (13-inch","1",""],["LG G3->Beats Studio Wireless Headphones->Audio-Technica ATH-M50x->iPad Air 2->Lenovo Yoga 3 14->Apple MacBook Air (13-inch->Beats Solo 2->Nikon D3300->SAMSUNG GALAXY NOTE 5->Google Nexus 6->Samsung Galaxy Tab A 8.0->Beats Powerbeats2 Wireless->HP Stream 11->Bose SoundLink Bluetooth Speaker III->iPad Air 2->Sony Xperia Z5 Premium->Vizio E series (2015)->Apple iPhone 5S->Jawbone Up2->Roku 2 (2015)->Apple CarPlay->Microsoft Surface Pro 3->Vizio SB4051-C0->Bose SoundLink Mini II->GoPro Hero3->Samsung Galaxy Note 4->Microsoft Surface Book->Google Nexus 5X->Amazon Kindle Paperwhite (2015)->Apple iPhone 6->Apple TV (2015)->Microsoft Surface Pro 4->Google Nexus 6P->Netgear Arlo Smart Home Security->Sony Xperia Z5->Samsung Gear S2->Samsung Gear VR (2015)->Roku 3 (2015)->GoPro Hero3->Microsoft Surface Pro 3->iPad Air 2->SimpliSafe Home Security->Apple MacBook Pro with Retina Display (13-inch->Yamaha YAS-203->iPad Mini 2","1",""],["Microsoft Surface Pro 4->Nikon D3300->Beats Powerbeats2 Wireless->Apple iPhone 5S->SimpliSafe Home Security->Bose SoundLink Bluetooth Speaker III->Microsoft Xbox One->Apple iPhone 6S->Lenovo Yoga 3 14->Amazon Kindle Paperwhite (2015)->JBL Flip 3->LG V10 (unlocked)->Yamaha YAS-203->UE Boom 2->LG G4->Fitbit Charge HR->Microsoft Surface Book->Jawbone Up2->Asus AC2400 RT-AC87U Dual-band Wireless Gigabit Router->iPhone 6S Plus->iPad Pro->Nest Learning Thermostat Third Generation->iPhone 6S Plus->Dyson v6->Asus RT-AC68U Dual-band Wireless-AC1900 Gigabit Router->Asus RT-AC68U Dual-band Wireless-AC1900 Gigabit Router->Microsoft Lumia 950->Asus Chromebit->Apple Watch->Sony Alpha 6000 (ILCE-6000)->Vizio SB4051-C0->JBL Charge 2+->Samsung SSD 850 Evo->Apple MacBook Air (13-inch->Samsung Gear S2->Samsung Galaxy S4->iPad Mini 2->Apple MacBook (12-inch->Amazon Kindle Paperwhite (2015)->Fitbit Charge HR->LG G4->GoPro Hero4 Silver->Apple Watch->BlackBerry Priv","1",""],["Nest Learning Thermostat->Samsung Galaxy Note 4->Apple MacBook Pro with Retina Display (13-inch->Samsung Galaxy Core Prime->Jawbone Up2->Samsung Galaxy S6 Edge+->Vizio M series (2015)->Samsung UNJU7100 series->TiVo Bolt->Apple TV->Google Nexus 9->LG V10 (unlocked)->Sony Alpha 6000 (ILCE-6000)->Lenovo Yoga 3 14->Sennheiser Momentum 2.0->LG G Stylo->HTC One M9->iPhone 6S Plus->SimpliSafe Home Security->Ninja Coffee Bar->Samsung SSD 850 Evo->Amazon Echo->Asus RT-AC68U Dual-band Wireless-AC1900 Gigabit Router->Samsung Galaxy S5->Microsoft Surface Book->Samsung Galaxy S4->JBL Flip 3->iPhone 6S Plus->Samsung Galaxy S6->Sennheiser HD 598->Apple MacBook Air (13-inch->HP Stream 11->Nest Cam->Apple iPhone 6 Plus->SAMSUNG GALAXY NOTE 5->Samsung UNJU7100 series->Amazon Echo->Samsung Galaxy Note 4->iPhone 6S Plus->Samsung Gear VR (2015)->Sennheiser HD 598->Yamaha YAS-203->HTC One M9->Nest Learning Thermostat Third Generation->Microsoft Surface Pro 3->Google Nexus 9->Apple TV (2015)->Microsoft Xbox One","1",""],["Samsung Galaxy Grand Prime->Bose SoundLink Bluetooth Speaker III->Apple TV->Beats Studio Wireless Headphones->SAMSUNG GALAXY NOTE 5->Samsung Galaxy Core Prime->Samsung Gear VR (2015)->HP Spectre x360->Apple iPhone 6->Apple iPhone 6 Plus->Samsung Galaxy S6->Samsung Galaxy S5->JBL Charge 2+->Samsung Galaxy Core Prime->Apple MacBook (12-inch->Nest Learning Thermostat->Nikon D3300->Bose SoundLink Mini II->Apple CarPlay->Bose SoundLink Bluetooth Speaker III->Samsung Gear S2->UE Boom 2->Samsung UNJS8500 series->iPad Air 2->Apple iPhone 6S->Samsung Galaxy S6 Edge->GoPro Hero4 Silver->Samsung Gear S2->iPad Air 2->Ninja Coffee Bar->iPad Air 2->Ninja Coffee Bar->Samsung UNJU7100 series->Asus Chromebit->Sony Alpha 6000 (ILCE-6000)->GoPro Hero4 Silver->TiVo Bolt->Bose SoundLink Bluetooth Speaker III->Apple iPhone 5S","1",""],["Samsung Galaxy S6 Active->Asus AC2400 RT-AC87U Dual-band Wireless Gigabit Router->HP Stream 11->Jawbone Up2->Samsung Galaxy Tab S2->Sennheiser HD 598->Samsung Galaxy Tab S2->Samsung Galaxy Tab S2->Apple TV->Yamaha YAS-203->Microsoft Xbox One->Dyson v6->Google Nexus 9->Apple iPhone 6->Apple iPhone 6S->SimpliSafe Home Security->Samsung UNJS8500 series->Asus AC2400 RT-AC87U Dual-band Wireless Gigabit Router->TCL S3800 series (Roku TV->JBL Charge 2+->iPad Mini 2->Bose SoundLink Around-Ear Wireless Headphones II->Apple MacBook Air (13-inch->Google Nexus 6P->Motorola Droid Turbo 2->SAMSUNG GALAXY NOTE 5->Microsoft Surface Book->LG G4->Microsoft Surface Book->Motorola Droid Turbo 2->Apple TV (2015)->Apple iPhone 6 Plus->Samsung Galaxy S6->Vizio E series (2015)->Google Nexus 6P->Samsung Galaxy S6 Active->HP Stream 11->Samsung Gear VR (2015)->GoPro Hero3->GoPro Hero3","1",""],["Vizio M series (2015)->Beats Powerbeats2 Wireless->Bose QuietComfort 25->Samsung Gear VR (2015)->Google Nexus 6->LG G Stylo->Samsung Galaxy S5->Apple Watch->Samsung SSD 850 Evo->LG G3->Apple MacBook Air (13-inch->HTC One M9->Amazon Echo->Samsung Galaxy S6 Edge->Google Nexus 6P->Nest Learning Thermostat->Vizio SB4051-C0->Lenovo Yoga 900->Apple MacBook (12-inch->Bose SoundLink Mini II->Apple iPhone 6->HP Stream 11->Sony Alpha 6000 (ILCE-6000)->Audio-Technica ATH-M50x->Microsoft Lumia 950->Apple iPhone 6S->Google Nexus 6->Bose QuietComfort 25->BlackBerry Priv->Bose QuietComfort 25->Samsung Galaxy S6->Samsung Galaxy Core Prime->Google Nexus 6P->Apple MacBook Pro with Retina Display (13-inch->iPad Air 2->Samsung Galaxy S5->Microsoft Surface Pro 3->Ninja Coffee Bar->Samsung Galaxy S6->iPad Air 2->Samsung Galaxy S6 Edge->TiVo Bolt->Apple MacBook (12-inch->HP Stream 11->Sony Alpha 6000 (ILCE-6000)->Samsung SSD 850 Evo->Samsung Galaxy Tab A 8.0","1",""],["iPad Air 2->Samsung UNJS8500 series->Samsung Galaxy S4->Samsung Galaxy S6 Edge->TCL FS4610R (Roku TV)->Apple iPad Mini 4->Sony Xperia Z5 Premium->Samsung Galaxy S6->BlackBerry Priv->Beats Solo 2->Samsung Galaxy Tab A 8.0->Ninja Coffee Bar->Beats Solo 2->Amazon Echo->Yamaha YAS-203->Samsung Galaxy Core Prime->Samsung Galaxy S6 Edge+->Sony Xperia Z5 Premium->Google Nexus 6P->Google Nexus 6->Microsoft Surface Book->Netgear Arlo Smart Home Security->Samsung Galaxy S6->Apple MacBook Air (13-inch->Google Nexus 9->JBL Flip 3->HP Stream 11->Nest Learning Thermostat->Asus RT-AC68U Dual-band Wireless-AC1900 Gigabit Router->iPhone 6S Plus->Sennheiser Momentum 2.0->Google Nexus 6->LG G Stylo->Apple iPhone 6S->HP Stream 11->JBL Flip 3->Samsung Gear VR (2015)->Apple TV->Fitbit Charge HR->Apple iPad Mini 4->Bose SoundLink Around-Ear Wireless Headphones II->Chromecast Audio->Apple MacBook (12-inch->Apple CarPlay->Microsoft Surface Pro 4","1",""]]},"dateCreated":"2016-01-13T10:46:14+0000","dateStarted":"2016-01-14T11:42:21+0000","dateFinished":"2016-01-14T11:42:37+0000","status":"FINISHED","progressUpdateIntervalMs":500,"$$hashKey":"object:1756"},{"text":"%md\n\n#### Conclusion\n\nThis concludes the demo. We have shown how you can use Hive to get a single view of product by combining: \n - ETL/CRM data from EDW/DB (ingested using Sqoop)\n - web traffic (ingested using HDF)\n - social media data (ingested using HDF)\n","dateUpdated":"2016-01-15T03:41:48+0000","config":{"colWidth":12,"graph":{"mode":"table","height":300,"optionOpen":false,"keys":[],"values":[],"groups":[],"scatter":{}},"editorMode":"ace/mode/markdown","editorHide":true,"enabled":true},"settings":{"params":{},"forms":{}},"jobName":"paragraph_1452829028487_1593174750","id":"20160115-033708_484971857","result":{"code":"SUCCESS","type":"HTML","msg":"

Conclusion

\n

This concludes the demo. We have shown how you can use Hive to get a single view of product by combining:

\n\n"},"dateCreated":"2016-01-15T03:37:08+0000","dateStarted":"2016-01-15T03:41:26+0000","dateFinished":"2016-01-15T03:41:27+0000","status":"FINISHED","progressUpdateIntervalMs":500,"$$hashKey":"object:1757"},{"text":"%md\n#### Next steps\n\nTry out the full lab available at: [https://github.com/abajwa-hw/single-view-demo](https://github.com/abajwa-hw/single-view-demo)","dateUpdated":"2016-01-15T03:48:05+0000","config":{"colWidth":12,"graph":{"mode":"table","height":300,"optionOpen":false,"keys":[],"values":[],"groups":[],"scatter":{}},"editorMode":"ace/mode/markdown","editorHide":true,"enabled":true},"settings":{"params":{},"forms":{}},"jobName":"paragraph_1452743693244_-474234196","id":"20160114-035453_1657563174","result":{"code":"SUCCESS","type":"HTML","msg":"

Next steps

\n

Try out the full lab available at: https://github.com/abajwa-hw/single-view-demo

\n"},"dateCreated":"2016-01-14T03:54:53+0000","dateStarted":"2016-01-15T03:48:01+0000","dateFinished":"2016-01-15T03:48:02+0000","status":"FINISHED","progressUpdateIntervalMs":500,"$$hashKey":"object:1758"},{"config":{"colWidth":12,"graph":{"mode":"table","height":300,"optionOpen":false,"keys":[],"values":[],"groups":[],"scatter":{}},"enabled":true,"editorMode":"ace/mode/scala"},"settings":{"params":{},"forms":{}},"jobName":"paragraph_1452829681525_-800442868","id":"20160115-034801_632479134","dateCreated":"2016-01-15T03:48:01+0000","status":"READY","progressUpdateIntervalMs":500,"$$hashKey":"object:1759"}],"name":"Demos / Hive / Retail Analytics","id":"2BBBW75VS","angularObjects":{},"config":{"looknfeel":"default"},"info":{}}